Resources

In addition to tools, the Klever Connect MCP server exposes the knowledge base as MCP resources — read-only URIs your assistant can subscribe to or fetch. Resources are useful when you want to list or browse the knowledge base instead of searching it.

URI templates

URIDescription
knowledge://indexTop-level index — categories, entry types, top tags, total counts.
knowledge://category/{category}All entries in a single category (e.g. category/api-reference, category/examples).
knowledge://type/{type}All entries of a single type (e.g. type/code_example, type/error_pattern).
knowledge://entry/{id}The full content of a single entry.

Examples

List the index

knowledge://index

Returns the same shape as get_knowledge_statstotal, byType, byCategory, topTags.

List all examples

knowledge://category/examples

Returns the 21 entries in the examples category, each with its ID, title, type, tags, and summary.

List all error patterns

knowledge://type/error_pattern

Returns the 12 error_pattern entries.

Fetch a single entry

knowledge://entry/api-reference/connect-wallet/signTransaction

Returns the full markdown content of that entry — equivalent to calling get_context with the same ID.

Tools vs resources

FeatureToolsResources
Best forSearch, ranking, filteringListing, browsing, deep-linking
MutationNone (all read-only)None (all read-only)
Triggered byAssistant decides to call themAssistant fetches by URI
ReturnsTool-specific JSON / markdownKnowledge-entry data

In practice, your assistant will use tools for most queries (because BM25 ranking matches user intent better) and fall back to resources when the user asks "show me everything in category X" or "list all error patterns".

Next steps

Was this page helpful?