Koog Documentation MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Koog Documentation MCP ServerHow does memory work in Koog agents?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Koog Documentation MCP Server
A Model Context Protocol (MCP) server that provides vector-based RAG search capabilities over Koog documentation using ChromaDB.
Setup
Create and activate virtual environment:
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activateInstall dependencies:
pip install -r requirements.txtClone the koog git repository and remember the path of your working copy.
Add to your Q CLI MCP configuration:
q config mcp add koog-docs python3 koog-mcp-server.py [koog-repo-path]If you omit koog-repo-path, it will default to '../koog'
Or manually add to your MCP config file:
{
"mcpServers": {
"koog-docs": {
"command": "python3",
"args": ["koog-mcp-server.py"],
"cwd": "/path/to/this/directory"
}
}
}Related MCP server: MCP Power - Knowledge Search Server
Database Initialization
The vector database will be automatically created and populated on first use:
ChromaDB creates a persistent database in
./chroma_db/All markdown files from
../koog/docs/docsare processed and indexedDocuments are chunked for optimal retrieval
Vector embeddings are generated using ChromaDB's default model
Note: First startup may take a few moments while the documentation is indexed.
Usage
Once configured, you can ask questions about Koog in Q CLI:
"How do I create a basic agent in Koog?"
"What are the different types of tools available?"
"How does memory work in Koog agents?"
"Show me examples of structured output"
The server will search through all Koog documentation files and return relevant sections with context.
Features
Vector-based semantic search using ChromaDB
Automatic document chunking for better retrieval
Persistent vector database with embeddings
Searches all markdown files in the Koog docs directory
Returns relevant sections with similarity scores
Extracts document titles and file paths for reference
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/karel1980/koog-docs-helper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server