mcp-knowledge-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., "@mcp-knowledge-serversearch the knowledge base for 'climate change impacts'"
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.
MCP Knowledge Server
Production-grade Retrieval-Augmented Generation (RAG) server with centralized knowledge base backed by Qdrant. Exposes identical functionality through Model Context Protocol (MCP) and FastAPI REST API.
Designed for enterprise scale: clean architecture, SOLID principles, dependency injection, and fully env-configurable providers.
Architecture
Cursor IDE (MCP Client)
↓
MCP Server (stdio / streamable-HTTP)
↓
Application Services
↓
RAG Pipeline → Embedding → Qdrant
↓
PostgreSQL (metadata) + Knowledge BaseKey Components
Layer | Responsibility |
| FastAPI REST endpoints |
| MCP tool registration (12 tools) |
| Use case orchestration |
| Retrieval pipeline, prompts, compression |
| Entities, ports, exceptions |
| LLM, embeddings, Qdrant, persistence |
| Loaders, chunkers, cleaning |
Related MCP server: estudIA-MCP
Quick Start
Prerequisites
Python 3.12+
uv package manager
Qdrant (local or Docker)
Ollama (optional, for local LLM)
Local Development
# Clone and setup
git clone <repo-url> mcp-knowledge-server
cd mcp-knowledge-server
cp .env.example .env
# Install dependencies
./scripts/setup.sh
# Start Qdrant (Docker)
docker run -p 6333:6333 qdrant/qdrant:v1.12.5
# Start REST API
uv run mcp-knowledge-server-api
# Start MCP server (stdio for Cursor)
uv run mcp-knowledge-server-mcp-stdioDocker Compose (Full Stack)
cp .env.example .env
docker compose -f docker/docker-compose.yml upServices:
MCP HTTP: http://localhost:8001/mcp
Qdrant: http://localhost:6333
PostgreSQL: localhost:5432
Configuration
All settings via .env — never modify source code to change providers.
LLM Providers
# Local (macOS)
LLM_PROVIDER=ollama
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=qwen3:8b
# Cloud
LLM_PROVIDER=openai
OPENAI_API_KEY=sk-...
OPENAI_MODEL=gpt-4.1Supported LLM providers: openai, anthropic, gemini, groq, together, openrouter, ollama, lmstudio, llamacpp, openai_compatible
Embedding Providers
EMBEDDING_PROVIDER=sentence_transformers
EMBEDDING_MODEL=all-MiniLM-L6-v2Supported: sentence_transformers, openai, ollama, voyage, cohere
Chunking Strategies
CHUNK_STRATEGY=recursive # recursive | token | markdown | semantic
CHUNK_SIZE=1000
CHUNK_OVERLAP=200macOS + Ollama Setup
# Install Ollama
brew install ollama
# Start Ollama
ollama serve
# Pull recommended models
ollama pull qwen3:8b
ollama pull nomic-embed-text
# Configure .env
LLM_PROVIDER=ollama
OLLAMA_MODEL=qwen3:8b
EMBEDDING_PROVIDER=ollama
OLLAMA_EMBEDDING_MODEL=nomic-embed-textRecommended models: qwen3, qwen2.5, llama3.2, mistral, gemma3, deepseek, phi
Cursor MCP Configuration
Copy .cursor/mcp.json.example to your Cursor MCP settings:
{
"mcpServers": {
"knowledge-server": {
"command": "uv",
"args": ["run", "python", "-m", "app.mcp.main"],
"cwd": "/path/to/mcp-knowledge-server",
"env": {
"LLM_PROVIDER": "ollama",
"OLLAMA_BASE_URL": "http://localhost:11434",
"OLLAMA_MODEL": "qwen3:8b"
}
}
}
}MCP Tools
Tool | Description |
| Semantic search over knowledge base |
| Generate RAG answer with citations |
| Ingest a document file |
| Re-ingest an existing document |
| Remove document and vectors |
| List indexed documents |
| Get document metadata |
| Find similar chunks |
| Create a new collection |
| Delete a collection |
| List all collections |
| Server health status |
REST API
OpenAPI docs: http://localhost:8000/docs
Examples
# Health check
curl http://localhost:8000/health
# Upload document
curl -X POST http://localhost:8000/documents/upload \
-F "file=@documents/sample.txt" \
-F "collection=knowledge_base"
# Search
curl -X POST http://localhost:8000/search \
-H "Content-Type: application/json" \
-d '{"query": "What is this about?", "top_k": 5}'
# RAG answer
curl -X POST http://localhost:8000/rag \
-H "Content-Type: application/json" \
-d '{"query": "Summarize the knowledge base"}'
# List collections
curl http://localhost:8000/collections
# Create collection
curl -X POST http://localhost:8000/collections \
-H "Content-Type: application/json" \
-d '{"name": "my_docs", "description": "My documents"}'Supported Document Formats
PDF, DOCX, TXT, Markdown, HTML, CSV
Adding New Providers
LLM Provider
If OpenAI-compatible: add config to
OpenAICompatibleLLMProvider.from_settings()inapp/infrastructure/llm/openai_compatible.pyIf custom API: implement
BaseLLMProviderinapp/infrastructure/llm/Register in
LLMProviderFactoryinapp/infrastructure/llm/factory.pyAdd env vars to
.env.example
Document Loader
Implement
BaseDocumentLoaderinapp/ingestion/loaders/Register in
LoaderRegistryinapp/ingestion/loaders/registry.py
Embedding Provider
Implement
BaseEmbeddingProviderinapp/infrastructure/embeddings/Register in
EmbeddingProviderFactory
Development
# Install with dev dependencies
uv sync --all-extras
# Lint
uv run ruff check app tests
uv run black --check app tests
# Type check
uv run mypy app
# Tests
uv run pytest
# Pre-commit
uv run pre-commit install
uv run pre-commit run --all-filesProject Structure
app/
├── api/ # FastAPI REST API
├── mcp/ # MCP server tools
├── services/ # Application use cases
├── rag/ # RAG pipeline stages
├── domain/ # Entities, ports, exceptions
├── infrastructure/# External adapters
├── ingestion/ # Loaders, chunkers, cleaning
├── config/ # Pydantic settings
├── logging/ # Structured logging
└── container.py # Composition root (DI)
tests/
docker/
scripts/
alembic/Deployment
Production Checklist
Set
APP_ENV=productionUse PostgreSQL:
DATABASE_URL=postgresql+asyncpg://...Configure Qdrant with API key and HTTPS
Enable auth:
ENABLE_AUTH=true, setAPI_KEYUse cloud LLM or dedicated Ollama instance
Run behind reverse proxy (nginx/traefik)
Set resource limits in Docker Compose
Environment Variables
See .env.example for the complete list.
License
MIT
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/NavinAnik/mcp-knowledge-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server