hybrid-rag-mcp
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., "@hybrid-rag-mcpSearch the docs for details on cross-encoder reranking."
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.
hybrid-rag-mcp
A production-minded Model Context Protocol (MCP) server that gives any LLM agent
a high-quality search_docs tool backed by hybrid retrieval (BM25 + dense vectors,
fused with Reciprocal Rank Fusion) and cross-encoder reranking — with a real
evaluation harness, prompt-injection guardrails, and OpenTelemetry tracing
built in.
One tool, exposed over MCP, that is measurably good and demonstrably safe.
Documentation
Full documentation lives in docs/. Quick links:
Get started | |
Reference | |
Deep dives | |
Extend & troubleshoot |
Related MCP server: docs2db-mcp-server
Why this project
Most retrieval demos stop at "embed the query, take cosine top-k." Real systems don't. This repo shows the parts that actually matter in production:
Capability | What it demonstrates |
MCP server ( | Tool-calling integration any MCP client (Claude Desktop, IDEs, custom agents) can use |
Hybrid retrieval (BM25 + dense, RRF fusion) | You understand lexical vs. semantic search and how to combine them |
Cross-encoder reranking | You can improve precision@k, not just recall — and measure it |
Eval harness (recall@k, MRR) | You prove quality with numbers, before/after each stage |
Prompt-injection guardrail | You treat tool inputs as untrusted (OWASP LLM01) |
OpenTelemetry tracing | You can debug and observe an agent tool in production |
Architecture
flowchart LR
A[MCP Client] -- search_docs query --> B[FastMCP Server]
B --> G{Injection guardrail}
G -- flagged --> R[Reject + reason]
G -- clean --> P[Retrieval pipeline]
subgraph P [Retrieval pipeline]
C[BM25 lexical] --> F[RRF fusion]
D[Dense vector] --> F
F --> E[Cross-encoder rerank]
end
P --> H[Top-k passages]
H --> A
B -. spans .-> T[(OpenTelemetry)]Quickstart
Requires Python 3.10+ (tested on 3.13).
# 1. Create an isolated environment
python3.13 -m venv .venv && source .venv/bin/activate
# 2. Install the core (BM25 works immediately — no model downloads)
pip install -e .
# 3. Run the tests and the retrieval eval
make test
make eval
# 4. Start the MCP server (stdio)
make runThe server ships with a small sample corpus (src/hybrid_rag_mcp/corpus/sample_docs.jsonl)
so everything runs end-to-end on first clone. Swap in your own corpus to make it yours.
Optional: enable dense vectors + reranking
The advanced retrieval stages activate automatically when their (heavier) dependencies are installed; otherwise the pipeline gracefully degrades to BM25-only.
pip install -e ".[full]" # sentence-transformers, flashrank, opentelemetryConnect it to an MCP client
Add this to your client's MCP config (example for Claude Desktop
claude_desktop_config.json):
{
"mcpServers": {
"hybrid-rag": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["-m", "hybrid_rag_mcp.server"]
}
}
}Evaluation
make eval scores retrieval quality on evals/qa_dataset.jsonl and prints a table so you
can see the contribution of each stage. Reranking should lift precision — prove it:
Config | Recall@5 | MRR |
BM25 only | run | . |
+ dense (RRF fusion) | . | . |
+ cross-encoder rerank | . | . |
Fill this table with your real numbers and screenshot it in your write-up. Numbers win interviews.
Security / red-teaming
make redteam runs a battery of prompt-injection payloads (redteam/injection_payloads.jsonl)
through the input guardrail and reports how many were caught. Extend the payload set and the
detector rules — closing the gap between them is the interesting part.
Observability
Every tool call is wrapped in an OpenTelemetry span (query, stage latencies, result count).
By default spans print to the console; point OTEL_EXPORTER_OTLP_ENDPOINT at a collector
(Jaeger, Grafana Tempo, Langfuse) to visualize traces.
Repository layout
hybrid-rag-mcp/
├── src/hybrid_rag_mcp/
│ ├── server.py # FastMCP entrypoint, exposes search_docs
│ ├── pipeline.py # composes guardrail -> retrieve -> fuse -> rerank
│ ├── retrieval/ # bm25 / vector / hybrid (RRF) / rerank
│ ├── security/ # prompt-injection guardrail
│ ├── observability/ # OpenTelemetry tracing helpers
│ └── corpus/ # sample corpus (jsonl)
├── evals/ # recall@k + MRR harness, QA dataset, promptfoo config
├── redteam/ # injection payloads + runner
└── tests/ # pytestRoadmap — make it yours
These are deliberately left for you to implement and defend in interviews:
Replace the sample corpus with a real one (your notes, a docs site, arXiv abstracts).
Add a second MCP tool (e.g.,
fetch_document(id)orsummarize(query)).Swap the embedding model and benchmark quality vs. latency.
Add caching for embeddings and rerank scores; measure cost/latency savings.
Wire traces into Jaeger or Langfuse and add a screenshot to the README.
Expand the red-team set and report your catch rate over time.
Migrate to the MCP SDK 2.0
MCPServerAPI once it stabilizes (currently pinned to the stable 1.xFastMCPline for maximum tutorial/Claude Desktop compatibility).
License
MIT — see 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.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context23265MIT
- Alicense-qualityCmaintenanceMCP server for semantic and hybrid search over RHEL documentation using docs2db RAG, with cross-encoder reranking and support for multiple MCP clients.4Apache 2.0
- Alicense-qualityDmaintenanceAn MCP server that indexes documents and serves relevant context to LLMs via Retrieval Augmented Generation (RAG).1536MIT
- Alicense-qualityCmaintenanceAn MCP server that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.12MIT
Related MCP Connectors
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/udarshmarthala/hybrid-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server