RAG MCP Adapter
Exposes an existing RAG API as MCP tools, enabling health checks and document-based question answering with source evidence.
README
RAG MCP Adapter
A small, read-only Model Context Protocol (MCP) adapter for an existing RAG API.
It exposes the RAG system as standard MCP tools so MCP-compatible clients and agents can:
- check the health of the RAG service
- ask questions against indexed documents
- optionally restrict retrieval to a specific file
- receive answers, sources, evidence scores, and model metadata
Architecture
MCP Client
|
v
rag_mcp_server.py
|
| HTTP
v
RAG API: http://localhost:8003
|
v
Qdrant + Elasticsearch + reranker + local vLLM
The adapter does not contain the RAG pipeline itself. It calls the existing RAG API through the RAG_API_URL environment variable.
MCP Tools
get_rag_health()
Checks whether the RAG API, Qdrant, and Elasticsearch are available.
ask_documents(...)
Asks a question against the indexed document collection.
Main inputs:
question: required question textfilename: optional file filterlimit: maximum retrieval candidatesmin_score: retrieval thresholdevidence_min_score: minimum evidence thresholdmax_new_tokens: answer generation limit
The result includes the answer, sources, evidence score, generator model, and orchestrator.
Project Files
rag-mcp-adapter/
├── rag_mcp_server.py
├── test_mcp_client.py
├── test_mcp_client_basic.py
├── requirements.txt
├── .env.example
└── README.md
Setup
cd ~/Downloads/rag-mcp-adapter
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
Set the RAG API address:
export RAG_API_URL=http://localhost:8003
Running the Complete System
Terminal 1 — start vLLM
cd ~/vllm-qwen
source .venv/bin/activate
export VLLM_USE_FLASHINFER_SAMPLER=0
vllm serve "$HOME/models/Qwen2.5-7B-Instruct-AWQ" \
--served-model-name qwen-local \
--host 0.0.0.0 \
--port 8001 \
--max-model-len 10000 \
--gpu-memory-utilization 0.88
Leave this terminal running.
Terminal 2 — start the RAG API
cd ~/Downloads/rag-solution
docker compose up -d
export RAG_API_URL=http://localhost:8003
curl -s "$RAG_API_URL/health" | python3 -m json.tool
Terminal 3 — run the MCP tests
cd ~/Downloads/rag-mcp-adapter
source .venv/bin/activate
export RAG_API_URL=http://localhost:8003
python test_mcp_client.py
The expanded suite currently checks:
- MCP connection and tool discovery
- generated tool schema
- RAG service health
- filtered DOCX retrieval
- filtered TXT retrieval
- full-corpus retrieval
- unsupported-question refusal
- additional document facts
- response metadata
- source provenance
- empty-input validation
Expected summary:
Passed: 12/12
Failed: 0/12
A JSON report is written to:
mcp_test_report.json
Notes
- The adapter is intentionally read-only.
- The RAG API must be running at
http://localhost:8003. - The local vLLM/Qwen server must be running at
http://localhost:8001/v1. - Important: the RAG
/healthendpoint can still report that Qdrant and Elasticsearch are healthy when vLLM is offline. In that case, MCP discovery and health checks may pass, but supportedask_documentsrequests can return HTTP500 Internal Server Error. - With both services running, the complete integration test should
report
12/12tests passed. - The adapter can be moved or deployed separately because it only depends on the RAG API URL.
- Do not expose destructive tools such as deleting documents or clearing indexes unless there is a clear requirement and appropriate access control.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.