Knowledge Assistant MCP Server
Provides integration with Google's Gemini models for natural language generation and embeddings, enabling the MCP server to perform LLM-based tasks and generate embeddings for document retrieval.
Provides integration with LangChain for building retrieval-augmented generation (RAG) pipelines, connecting to ChromaDB vector store and orchestrating document retrieval and synthesis.
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., "@Knowledge Assistant MCP ServerWhat is the main topic of the uploaded research paper?"
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.
Knowledge Assistant MCP Server
A multi-agent RAG (Retrieval-Augmented Generation) MCP server built with FastMCP in Python. It answers questions from your documents using a coordinator, retriever, and synthesizer agents, and includes a human-in-the-loop step where you approve or request edits before finalizing answers.
What it does
Query your knowledge base: Ask questions in natural language; the server retrieves relevant chunks and proposes an answer with citations.
Multi-agent pipeline: A coordinator decides whether to use the knowledge base, a retriever (RAG) fetches relevant documents, and a synthesizer produces a structured answer proposal.
Human-in-the-loop: You review the proposed answer and either approve it or request edits before the answer is finalized.
Add documents: Ingest text into the vector store (ChromaDB) so the assistant can answer from your own content.
Use cases: Internal knowledge assistant, FAQ over your docs, Q&A over notes or wikis, and similar RAG workflows that require a human approval step.
Related MCP server: vector-mcp
Project Structure
knowledge-assistant-mcp/
├── src/
│ ├── server.py # FastMCP app entry point
│ ├── config/
│ │ └── settings.py # pydantic-settings (server name, API keys, model, RAG settings)
│ ├── routers/
│ │ ├── tools.py # Register MCP tools
│ │ ├── resources.py # Register MCP resources
│ │ └── prompts.py # Register MCP prompts
│ ├── tools/ # Tool implementations
│ ├── resources/ # Resource implementations
│ ├── prompts/ # Prompt content (workflow with human-in-the-loop)
│ ├── app/ # Core logic: RAG, LLM, orchestrator (coordinator/retriever/synthesizer)
│ ├── models/ # Pydantic schemas (structured outputs)
│ └── utils/ # Helpers (e.g. Opik)
├── pyproject.toml
├── .env.sample
├── Dockerfile
└── README.mdSetup
Prerequisites: Python 3.13, uv.
Clone the repository
git clone https://github.com/YOUR_USERNAME/knowledge-assistant-mcp.git
cd knowledge-assistant-mcpInstall dependencies with uv
uv syncThis creates a virtual environment (Python 3.13) and installs dependencies from pyproject.toml.
Configure environment variables
cp .env.sample .envEdit .env and set at least:
GOOGLE_API_KEY(required): Used for Gemini (LLM and embeddings).
Get it from Google AI Studio.
Optional:
OPIK_API_KEY: For observability (tracing). Get it from Opik.OPIK_PROJECT_NAME: Opik project name (default:knowledge-assistant).MODEL_NAME: Gemini model (default:gemini-2.0-flash).CHROMA_PERSIST_DIR: Directory for ChromaDB (default:./chroma_data).CHROMA_COLLECTION: Collection name (default:knowledge_base).RAG_TOP_K: Number of chunks to retrieve (default:5).EMBEDDING_MODEL: Google embedding model for RAG (default:models/gemini-embedding-001). Override if your API uses a different model.
Run the server
Stdio (for Cursor / Claude Desktop):
uv run python -m src.server --transport stdioHTTP:
uv run python -m src.server --transport http --port 8000Or use the entry point:
uv run knowledge-assistant-mcp --transport stdioYou should see the FastMCP banner and the process waiting for connections; stop with Ctrl+C.
Environment variables
Variables you can set in .env, and where to get API keys:
Environment variables summary
Variable | Required | Description |
| Yes | Google AI (Gemini) API key – Google AI Studio |
| No | Opik API key for observability – Opik |
| No | Opik project name (default: |
| No | Gemini model (default: |
| No | ChromaDB persistence directory (default: |
| No | ChromaDB collection name (default: |
| No | Number of chunks to retrieve (default: |
| No | Google embedding model for RAG (default: |
Connecting from Cursor (or another MCP client)
Add this to your Cursor MCP settings (e.g. .cursor/mcp.json), replacing the path and API key as needed:
{
"mcpServers": {
"knowledge-assistant": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/knowledge-assistant-mcp",
"run",
"python",
"-m",
"src.server",
"--transport",
"stdio"
],
"env": {
"GOOGLE_API_KEY": "your-google-api-key-here"
}
}
}
}You can also rely on a .env file in the project directory and omit env or only set ENV_FILE_PATH if your client supports it.
How to use
Once the server is running and connected (e.g. in Cursor):
Add documents (optional but needed for RAG answers)
Use the add_documents tool: passtext(the content to ingest) and optionallysource(e.g."Context Engineering Book"). The server chunks and embeds the text into ChromaDB. You can add more documents anytime.Ask a question
Use the query_knowledge_base tool with your question. The server runs the multi-agent pipeline (coordinator → retriever → synthesizer) and returns a proposed answer with citations.Human-in-the-loop
Review the proposal, then call approve_or_edit_answer:To accept:
approved=True, sameproposal_answeras returned.To request changes:
approved=False, sameproposal_answer, and setuser_feedbackto your requested edits. The server can then produce a revised answer.
You can also use search_knowledge_base to only search the vector store (no generated answer), and the knowledge_assistant_workflow prompt as a step-by-step guide. The resource knowledge-assistant://server_info exposes server metadata and RAG settings.
Features
Core:
FastMCP server (src/server.py) with tools (query_knowledge_base, approve_or_edit_answer, add_documents, search_knowledge_base), one workflow prompt (knowledge_assistant_workflow) with a human-in-the-loop step (review proposal → approve or edit via approve_or_edit_answer), uv-based setup, and the structure above. No API keys in the repo; .env.sample and .gitignore are included.
Additional:
Multi-agent orchestration – Coordinator, retriever (RAG), and synthesizer agents in
src/app/orchestrator.py.RAG with vector database – ChromaDB + LangChain + Google embeddings;
search_knowledge_baseandadd_documents; persistence viaCHROMA_PERSIST_DIR.MCP resource –
knowledge-assistant://server_infoexposes server name, version, collection, and RAG settings.Human-in-the-loop validation – Workflow returns a proposal; the user approves or requests edits with
approve_or_edit_answerbefore finalizing.Structured outputs – Pydantic models (
AnswerProposal,SearchResult,RetrievedChunk,SynthesisResult) for synthesizer and API responses.Observability (Opik) – Optional tracing when
OPIK_API_KEYis set.
Docker
Build and run with Docker:
docker build -t knowledge-assistant-mcp .
docker run --rm -e GOOGLE_API_KEY=your-key -v $(pwd)/chroma_data:/app/chroma_data knowledge-assistant-mcp --transport stdioFor HTTP on port 8000:
docker run --rm -p 8000:8000 -e GOOGLE_API_KEY=your-key -v $(pwd)/chroma_data:/app/chroma_data knowledge-assistant-mcp --transport http --port 8000License
MIT (or your chosen license).
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/SMGilliatt/knowledge-assistant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server