knowledge-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| query_knowledgeA | Search the knowledge base using semantic search. Returns relevant document chunks with similarity scores. |
| index_urlB | Fetch and index content from a URL into the knowledge base |
| add_documentB | Add a markdown document to the knowledge base |
| list_documentsA | List all documents in the knowledge base |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: adding documents, indexing URLs, listing documents, and querying. No overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (add_document, index_url, list_documents, query_knowledge).
With 4 tools, the server is appropriately scoped for a knowledge base manager, covering essential operations without excess.
The toolset covers adding (two methods), listing, and searching the knowledge base, but lacks update or delete operations, which is a minor gap.