Single-binary local RAG MCP server in Rust. MiniLM compiled in, hybrid search, zero deps.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
One file. Zero dependencies. Ready before your editor finishes loading.
A local RAG engine in a single static binary β MiniLM embeddings compiled inside, hybrid dense + BM25 retrieval, MCP-native. No Node, no Python, no model download on first query.
| ~20 ms to ready | MCP handshake completes before the model even loads |
| Zero runtime deps | no Node, no Python, no pip/npm, no model downloads β ever |
| Hybrid retrieval | dense cosine β BM25 fused with Reciprocal Rank Fusion |
| Private by construction | no network code path after installation |
| One file, three OSes | ~105 MB (the model lives inside), CI-built for linux/macOS/Windows |
Or wire it straight into Claude Desktop / Cursor and let the AI search your notes mid-conversation β config below.
| Stage | Cost |
|---|---|
| Binary start + MCP initialize | ~20 ms (measured: store open + tool registration only) |
First rag_search / rag_index call | +~300 ms one-time (mmap safetensors, build BERT graph) |
| Subsequent searches | ~25 ms per query (2-core CPU, small corpus) |
| Re-indexing unchanged corpus | near-zero (FNV content hash skip) |
The embedding model is lazy: the MCP handshake and rag_status never touch
it, so editors see an instant server.
Download a prebuilt archive from the latest release β Windows x86_64, macOS Apple Silicon, and Linux x86_64 are all built by CI on every version tag:
Or build from source:
Cross-compile targets used by CI: x86_64-unknown-linux-gnu,
aarch64-apple-darwin, x86_64-pc-windows-msvc.
Claude Desktop / Cursor / any MCP client:
Or just run ./quillrag serve and point any stdio client at it.
| Tool | What it does |
|---|---|
rag_index | Incrementally index a directory/file. Skips unchanged files, prunes deleted ones, re-embeds only diffs. |
rag_search | Hybrid retrieval: dense MiniLM cosine + BM25 keyword, fused with Reciprocal Rank Fusion. Returns ranked chunks with source paths. |
rag_status | Document/chunk counts, bytes indexed, file-type breakdown. |
rag_clear | Wipe everything. |
CLI equivalents (same engine):
sentence-transformers/all-MiniLM-L6-v2 β masked mean pooling +
L2 norm, numerically matching sentence-transformers on CPU. Weights are
include_bytes!-ed into the binary and mmap'd from a materialized cache on
first load.Ξ£ 1/(60+rank)) β no score-scale tuning,
robust to heterogeneous rankings.md markdown txt rst json yaml yml toml csv tsv html htm xml log rs py js jsx ts tsx go c h cpp hpp java rb sh bash zsh sql proto graphql dockerfile makefile ini cfg conf env β extend with -e ext1,ext2 / "extensions": [...].
Ignored dirs: every dot-directory (.git .obsidian .vscode β¦) plus
node_modules target dist build venv __pycache__ vendor.
Everything runs locally: embeddings, storage, search. Nothing leaves the machine β there is no network code path at all after installation.
Binary β 105 MB (the model lives inside). RAM β 120 MB resident while idle, spiking to ~250 MB during batch embedding.
quillrag stores everything in a single redb file and runs dense retrieval as
an exact, single-threaded linear scan over all vectors β no ANN index yet.
That makes the relevant limit query latency, not storage. Storage scales to
millions of chunks; retrieval speed is O(N) per query.
| Corpus | Vectors | Approx. RAM (f32) | Steady-state query |
|---|---|---|---|
| 1K chunks | 1K | ~1.5 MB | ~25 ms (measured) |
| 10K chunks | 10K | ~15 MB | ~250 ms (extrapolated) |
| 100K chunks | 100K | ~154 MB | ~2β5 s (extrapolated) |
| 1M chunks | 1M | ~1.5 GB | 20β60 s (extrapolated β not viable without ANN) |
Verified on a corpus of 1K chunks (5/5 tests including real JSON-RPC-over-stdio
e2e); figures above 1K are extrapolated from the O(N) dense-scan cost, not
measured. A synthetic scale probe (src/bin/quillbench.rs) exists to measure
the curve on your own hardware β run cargo build --release && ./target/release/quillbench.
What this means in practice:
How it compares to common alternatives on the relevance axis:
all-MiniLM-L6-v2 ceiling as quillrag's dense path, but quillrag adds BM25 +
RRF fusion, which wins on keyword-heavy queries (error codes, IDs, exact
tokens). quillrag has no reranker or metadata filtering, which llama-index
offers on top.quillrag is deliberately minimal today. The big unlock is an approximate nearest-neighbor index:
Track the ANN work here: issue #1 β "ANN index for <1M chunks."
Is it really one file? Yes. The MiniLM weights + tokenizer are compiled in
via include_bytes!. No npm install, no Python, no model download on first
query. The binary is ~105 MB because the model lives inside it.
Why is startup so fast? The embedding model is lazy. The MCP handshake and
rag_status never touch it β editors see a ready server in ~20 ms. The model
only loads on the first rag_search / rag_index (~300 ms one-time).
What's the largest corpus it handles? Verified at 1K chunks (~25 ms/query). The architecture scales to millions of stored chunks; interactive retrieval holds up to low-tens-of-thousands today, and an ANN index (Roadmap) extends that to 1M+.
How is this different from llama-index? Similar hybrid retrieval quality, but quillrag is a single static binary with no runtime/dependency footprint and instant startup. llama-index adds rerankers, sophisticated chunking, and query expansion that quillrag doesn't have yet.
What file types are indexed? md markdown txt rst json yaml yml toml csv tsv html htm xml log rs py js jsx ts tsx go c h cpp hpp java rb sh bash zsh sql proto graphql dockerfile makefile ini cfg conf env β extend with -e.
Does it phone home? No. There is no network code path after installation.
.obsidian plugin configs
no longer pollute results); first fully automated 3-platform CI release.
Upgrade note: run quillrag clear once and re-index.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/quillrag)<a href="https://allmcps.com/mcp/quillrag"><img src="https://allmcps.com/api/badge/quillrag?style=directory" alt="Quillrag on AllMCPs" /></a>