repodoc MCP server
Provides a local MCP server for Claude Code to retrieve relevant documentation slices from a repository's auto-generated reference docs using hybrid search (vector + BM25).
README
repodoc
Auto-documenting repo tool with local RAG retrieval.
- Generates "what-exists" reference docs for each source file (LLM, on push only)
- Maintains them incrementally — a SHA-256 manifest means only changed files are re-documented/re-embedded
- Serves everything through a local hybrid (vector + BM25) index:
- an MCP server so Claude Code retrieves only the relevant slices (token savings)
- a MkDocs Material site for humans
All retrieval is local and free (sentence-transformers + LanceDB). The only API cost is generation, at push time — and even that can be moved to a local model via Ollama.
Install
cd c:\apps\repodoc
uv venv --python 3.12
uv pip install -e ".[index,mcp,site]"
The generator needs ANTHROPIC_API_KEY (or [generator] provider = "ollama" in config).
Usage
repodoc init <repo> # one-time: writes <repo>/.repodoc/config.toml + manifest
repodoc status --repo <repo> # what changed since last run
repodoc sync --repo <repo> # generate + index changed files (what CI calls)
repodoc query --repo <repo> "how does the needs system work?"
repodoc serve-mcp --repo <repo> # stdio MCP server for Claude Code
repodoc build-site --repo <repo> # MkDocs site -> <repo>/.repodoc/site
repodoc reindex --full --repo <repo> # after changing the embedding model
Useful flags: repodoc generate --dry-run (no LLM calls), --limit N (cap spend per run).
Claude Code integration
.mcp.json in your workspace:
{
"mcpServers": {
"gps3-docs": {
"command": "c:/apps/repodoc/.venv/Scripts/repodoc.exe",
"args": ["serve-mcp", "--repo", "c:/apps/gps3"]
}
}
}
Tools exposed: search_docs(query, k, doc_class), get_doc(path), list_docs().
Keeping docs current on push
- CI (preferred): see
gps3/.github/workflows/repodoc.yml— runsrepodoc syncon push to the default branch and commits regenerated docs. Needs the repodoc repo on GitHub +ANTHROPIC_API_KEYsecret. - Local hook (opt-in):
.git/hooks/pre-pushrunningrepodoc sync --repo .. Note this calls the LLM (costs money) on each push — CI with caching is usually better.
Model upgrades
Both model slots live in <repo>/.repodoc/config.toml:
| Slot | Change | Consequence |
|---|---|---|
[generator] |
e.g. anthropic → ollama + big local model | none — next generate uses it |
[embeddings] |
e.g. nomic-embed → Qwen3-Embedding 8B | auto-detected → one-time full re-index |
Provenance: every indexed chunk is tagged source, generated-reference, or planning, and retrieval surfaces the tag so agents treat planning docs as intent, not ground truth.
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.