Local RAG MCP for markdown documentation. Retrieval only; host synthesizes answers.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Local RAG MCP for documentation. Point source at any markdown repository
(local path or git URL).
The server does retrieval only (no answer LLM). ask_docs returns grounded
passages and citations; the MCP host (Cursor / Claude) synthesizes the answer.
ask_docs retrieval with configurable path-based layer filterslist_docs discovery for configured docs collections and layer filtersreindex rebuilds the local vector index; for git URL sources it also fetches updatesuvgit on PATH (only if source is a git URL)source is a private git URL
(gh auth login, HTTPS credential helper, or SSH). No tokens in config.Config path: ~/.config/mcp-docs-ask/config.json
Windows:
%USERPROFILE%\.config\mcp-docs-ask\config.json
product is a git URL (ref applies). team-notes is a filesystem path (ref unused).
Optional desc on each docs collection and layer helps agents pick the right target.
embedding_model, top_k, and chunk_max_chars resolve as:
docs.<id>.X β default.X β built-in. Omit per-docs keys to inherit.
Embedding model recommendation
Any Hugging Face id loadable by sentence-transformers works. Pick by language mix:
| Docs / queries | Recommended embedding_model |
|---|---|
| English-only (built-in when omitted) | sentence-transformers/all-MiniLM-L6-v2 |
| Chinese-only | BAAI/bge-small-zh-v1.5 |
| Multilingual (~50 langs) | sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2 |
Changing embedding_model requires a reindex (the on-disk index stores the model name).
| Field | Description |
|---|---|
docs.<id>.source | Docs repo root: local path or git URL |
docs.<id>.desc | Short description for discovery (list_docs) |
docs.<id>.ref | Branch / tag / SHA for git URL sources only (default main; ignored for local paths) |
docs.<id>.include | Globs relative to repo root (default **/*.md) |
docs.<id>.exclude | Globs to skip |
docs.<id>.layers.<name>.include | Path globs for that layer (first match wins) |
docs.<id>.layers.<name>.desc | Short layer description for discovery |
docs.<id>.embedding_model | Optional override (see recommendation above) |
docs.<id>.top_k | Optional override for default retrieval count |
docs.<id>.chunk_max_chars | Optional override for max body chars per heading chunk |
default.docs | Default docs collection id |
default.embedding_model | Default sentence-transformers model id |
default.top_k | Default retrieval count |
default.chunk_max_chars | Default max body chars per heading chunk |
Layers partition indexed files by path glob. First match wins. Names are
case-insensitive; all is reserved (cannot be configured as a layer name).
ask_docs layer | Meaning |
|---|---|
all (default) | Every indexed chunk (named layers and paths outside them) |
<named> | Only chunks whose path matched that named layerβs include globs |
Paths that match no named-layer glob are still indexed and only appear under
layer=all. Omit layers (or set "layers": {}) for flat repos β use
layer=all.
Cache layout:
~/.cache/mcp-docs-ask/repos/<docs-id>/~/.cache/mcp-docs-ask/indexes/<docs-id>/| Tool | Description |
|---|---|
list_docs | List configured docs collections, layer filters, and index state |
ask_docs | Retrieve grounded passages + citations (layer: all or a named layer) |
reindex | Sync git source (if URL) and rebuild the vector index |
list_docs returns a default block with the same keys as the config default
block (docs, embedding_model, top_k, chunk_max_chars), plus a docs list
where each entry carries its resolved values, a default flag, and an index
block (null when the collection has never been indexed). Valid layer values
are all plus the named layer ids β see Layers above.
list_docs and reindex return the same index keys: origin, root, rev,
files, chunks, layers.
origin mirrors the configured source: file for a filesystem path, git for
a URL the server clones into ~/.cache/mcp-docs-ask/repos/<docs-id>/ and
fetches on reindex. root is where the files actually are β null only when
a built index outlived its source directory. rev is the checkout HEAD when
there is one, so a file source that is itself a git clone still reports one;
its working tree may hold uncommitted edits, so rev labels the checkout, not
the exact indexed content.
ask_docs carries only the two answer-scoped keys, root and rev: the
checkout that produced the passages, and the revision they came from.
citations[].path is repo-relative and stable; answer_context holds the
passage text once, keyed by the [n] markers that match citations[].n. To read
a whole source file, join index.root from the same ask_docs response with a
citation path:
Take root from the response that produced the citations rather than an earlier
reindex β ask_docs rebuilds a stale index itself, so its rev is the one
that matches the passages in hand.
The examples below launch the server with uvx, which installs the package on first
use. Run it once in a terminal beforehand so your host does not block on that install:
The server then starts on stdio and waits for input β press Ctrl-C once you see the
install line. Embedding model weights are fetched separately, on the first ask_docs
or reindex call.
Linux (including WSL, containers, and CI): the PyPI
torchwheel for Linux is the CUDA build. It pulls ~15nvidia-*packages whether or not the machine has an NVIDIA GPU β about 2.7 GB of wheels and ~4 GB on disk. Windows and macOS resolve to a CPU-only wheel (~1 GB) and never download CUDA. Pre-warming matters most here: expect the firstuvxrun to take minutes, not milliseconds.
Add to .cursor/mcp.json:
Add to your Claude Code MCP config:
ask_docs rebuilds the index automatically when file mtimes/sizes
change (fingerprint check). You do not need reindex after editing local docs.ask_docs never fetches. Call reindex to git fetch the configured
ref and rebuild.embedding_model invalidates the on-disk index (rebuild on next use /
reindex).No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/docs-ask-local-docs-rag)<a href="https://allmcps.com/mcp/docs-ask-local-docs-rag"><img src="https://allmcps.com/api/badge/docs-ask-local-docs-rag?style=directory" alt="Docs Ask (local docs RAG) on AllMCPs" /></a>