mcp-ai-workspace
Exposes document retrieval as an MCP tool, enabling LLMs to search a local vector store of markdown documents. Includes a retrieval evaluation harness to measure hit rate and MRR.
README
mcp-ai-workspace
Give an LLM a tool that searches your own documents — and measure whether it retrieves the right ones.
A small, from-scratch implementation of the pattern behind every serious "chat with your data" product: an MCP server that exposes document retrieval as a tool, a vector-RAG pipeline underneath it, and an evals harness that scores retrieval quality. No framework magic — ~200 lines you can read in one sitting.
The problem it solves
An LLM on its own can't see your private documents, and when asked about them it will confidently make things up. The fix is retrieval: look up the relevant real passages first, then answer from them, with citations.
The interesting question is how an agent gets access to that retrieval. The answer here is MCP (the Model Context Protocol) — the emerging standard for giving models tools. This repo wires retrieval up as an MCP tool, so any MCP-capable client (Claude Desktop, an agent framework, a self-hosted chat UI) can call it and answer grounded in your documents instead of guessing.
What it does
- Indexes a folder of markdown docs into a local vector store.
- Serves a single MCP tool,
search_knowledge_base, that returns the passages most relevant to a question, each with its source file and a similarity score. - Ships an evals harness that checks, over a set of known question→document
pairs, whether retrieval actually surfaces the right source (
hit@k+MRR).
The bundled corpus is a fictional company handbook (corpus/), so the whole
thing runs end-to-end with no setup beyond pip install.
Architecture
flowchart LR
subgraph Offline["Indexing (ingest.py)"]
D[corpus/*.md] --> C[chunk into passages]
C --> E1[embed]
E1 --> Q[(Qdrant<br/>vector store)]
end
subgraph Online["Serving (server.py)"]
U[MCP client / LLM] -->|calls tool| T[search_knowledge_base]
T --> E2[embed query]
E2 --> Q
Q -->|top-k passages + sources| T
T -->|grounded context| U
end
EV[evals/run_evals.py] -.->|same retrieval path| Q
The model on the left never talks to the vector store directly. It calls the tool; the tool does the retrieval. That indirection is the whole point of MCP.
How the agent knows what it can do
An MCP tool is defined by three things, and the model reads all three to decide when and how to call it:
| Part | In this repo | What it's for |
|---|---|---|
| name | search_knowledge_base |
how the model refers to the tool |
| description | the tool's docstring in server.py |
the model reads this to decide when to call it |
| input schema | the typed arguments (query: str, top_k: int) |
tells the model how to call it |
That contract — name + description + schema — is the entire interface between the model and your code. Get the description right and the model uses the tool well; that's most of the "prompt engineering" in an agentic system.
Run it
make install # create a venv, install deps
make ingest # build the vector index from corpus/
make evals # score retrieval quality
make serve # run the MCP server (stdio)
# or just:
make demo # ingest + evals, end to end
To use it from an MCP client (e.g. Claude Desktop), register the server with the
example in mcp-client-config.example.json (fix the absolute path), restart the
client, and the model gains a search_knowledge_base tool.
Evals
make evals runs evals/evalset.json — questions whose correct source document
is known — and reports:
- hit@k — fraction of questions where the right document is in the top-k
- MRR — mean reciprocal rank, which rewards ranking the right doc first
The run exits non-zero if hit@k falls below the threshold, so it can gate CI.
"I built RAG" is cheap; "I measure RAG, and here's the number" is the point.
Stack
| Layer | Choice | Why |
|---|---|---|
| Tool protocol | MCP (mcp SDK, FastMCP) |
the standard way to expose tools to an LLM |
| Vector store | Qdrant (local, on-disk) | a real vector DB API with no service to run |
| Embeddings | fastembed (BAAI/bge-small-en-v1.5) |
ONNX, CPU-only, no torch, no API key |
Every choice is swappable: a stronger embedding model, a hosted Qdrant, or a synthesis step that calls an LLM to write the final answer from the retrieved passages.
What I'd add next
- An
answertool that calls an LLM to synthesise a cited answer from the retrieved passages (kept out of the core so the repo runs with no API key). - Chunking by semantics rather than character budget.
- A reranker, and reporting precision/recall per document, not just hit@k.
Acknowledgements
The architecture here — a self-hosted LLM fronted by MCP tools and a vector-RAG layer — follows the pattern I learned from my DevOps professor, Oriol Rius, whose course stack first showed me how these pieces fit together. This repo is my own from-scratch, minimal re-implementation, written to internalise the concepts and demonstrate them honestly in code I wrote myself.
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。