agent-kb
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| KB_CONFIG | No | Project config path. Default: <repo_root>/kb.yaml. | <repo_root>/kb.yaml |
| QDRANT_HOST | No | Qdrant host. Default: localhost. | localhost |
| KB_REPO_ROOT | No | Consuming repo root. Default: auto-detected (kb.yaml walk-up). | auto-detected |
| KB_EMBED_BACKEND | No | Embedding backend: fastembed or ollama. Default: fastembed. | fastembed |
| KB_WORKTREE_SLUG | No | Collection suffix override. Default: derived from repo root basename. | derived from repo root basename |
| QDRANT_GRPC_PORT | No | Qdrant gRPC port. Default: 6334. | 6334 |
| QDRANT_HTTP_PORT | No | Qdrant HTTP port. Default: 6333. | 6333 |
| KB_FASTEMBED_MODEL | No | Embedding model. Default: BAAI/bge-small-en-v1.5. | BAAI/bge-small-en-v1.5 |
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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| kb_searchA | Semantic search across indexed knowledge. Args:
query: Natural-language question or keyword phrase.
source: Optional source name (see |
| kb_getA | Fetch the full text and payload of a chunk by id. Args:
id: The chunk id returned by |
| kb_list_sourcesA | List configured sources and the state of their Qdrant collections. |
| kb_reindexB | Re-run an indexer. Args:
source: Indexer name from |
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 targets a distinct operation: search, fetch-by-id, list sources, and reindex. There is no meaningful overlap; kb_search and kb_get are clearly separated by query-based retrieval versus direct ID lookup.
All tools use the consistent kb_ prefix followed by a clear verb or verb-noun phrase: search, get, list_sources, reindex. The naming pattern is uniform and predictable.
Four tools is compact but well-scoped for a knowledge base server covering retrieval, inspection, source listing, and maintenance. Each tool earns its place without unnecessary redundancy.
Core knowledge base operations are covered: search, fetch chunk content, list sources, and reindex. Minor gaps exist such as no delete/clear collection or detailed status beyond source listing, but these are not critical for the apparent purpose.