Git-native, review-gated knowledge base for LLM agents. Cited retrieval, audited writes.
io.github.vouchdev/vouch MCP Server
The io.github.vouchdev/vouch MCP server provides a Git-native, review-gated knowledge base for LLM agents. It supports cited retrieval and audited writes, combining an MCP server with a JSONL tool server and a CLI, as described in the project excerpt.
π οΈ Key Features
Git-native knowledge base
Review-gated access
Cited retrieval
Audited writes
MCP server + JSONL tool server + CLI
π Use Cases
LLM agent knowledge management
Personal knowledge base and note-taking
Knowledge-graph style workflows
Open-source documentation and retrieval
β‘ Developer Benefits
Audit-log and reviewed operation paths
Git-native storage integration
Designed for MCP usage in agent environments
β οΈ Limitations
The provided excerpt does not include implementation details, authentication model, or tool schemas.
Agents should not start every session with amnesia β but they shouldn't get to write whatever they want either.
vouch gives LLM agents durable memory with an explicit review gate: sessions capture themselves, agents propose writes, and nothing becomes durable knowledge until you approve it. Approved artifacts are plain files under .vouch/ β YAML claims, markdown pages β so the KB lives in your repo, is reviewed like code, diffs cleanly, and travels with git clone.
The destination is the one Andrej Karpathy's llm-wiki idea file sketches: stop using LLMs as search engines that rediscover your documents on every question β use them as tireless knowledge engineers that compile, cross-reference, and maintain a living wiki, while humans curate and think. vouch is that idea with the write path made trustworthy. vouch compile has an LLM draft the topic pages, but every page cites approved claims, every [claim: β¦] citation is machine-verified before the draft is filed, and the drafts pass through the same review gate as every other write. The LLM compiles; the human approves; the wiki compounds.
"I can do this with one prompt"
Often true β and worth being honest about. If you want your agent to remember things, a paragraph in CLAUDE.md, a memory file, or your host's built-in auto-memory gets you most of the way, costs nothing, and needs no install. Reach for that first. Recall is not a hard problem.
What is hard is trust in the write path, and that's a different problem than memory. Single-writer memory needs no trust model: you're the only author, and a bad line costs you a shrug. The moment writes come from more than one author β several agents, a teammate, a future you who forgot the context β the question stops being "what did we say?" and becomes "who decided this was true, on what evidence, and can I audit it later?" A prompt cannot answer that, no matter how good the prompt is.
That's the whole of vouch:
one prompt / memory file
vouch
Who can write
whatever the agent decides to save
agents propose; a human approves β nothing else lands
Why believe a line
vibes
every claim cites a content-hashed source; uncited is a validation error
When it's wrong
edit and hope
supersede / contradict / archive, with the old version still in history
Who changed it
file mtime
append-only audit log: who proposed, who approved, citing what, when
At n β₯ 2 writers
last write wins, silently
one gate, one reviewed history, shared by git clone
What you read
a growing pile of notes
compiled topic pages with verified citations β a wiki, not a log
The same argument as a picture β at one writer the two are the same thing; the gap opens at the second writer and only widens:
So the honest pitch: vouch is not a better place to put memory β it's a review gate in front of one, and a wiki on the other side of it. If you're solo and happy, one prompt is genuinely fine; vouch's session capture runs passively alongside whatever your host already remembers, rather than replacing it. But once a fleet of agents writes to shared knowledge β or a team does β that pile of notes needs an editor, and an editor is not something you can prompt your way to. The case in full: docs/review-gate.md.
Install
For the full UI experience (recommended first time):
bash
docker run --rm -p 127.0.0.1:5173:5173 -v vouch-demo-data:/data ghcr.io/plind-junior/vouch-demo
# then open http://localhost:5173
Pre-seeded KB + full webapp console, zero setup. Pass -e ANTHROPIC_API_KEY=sk-ant-... to enable LLM features.
For the full UI without Docker β Python only, no clone, no node:
bash
pipx install 'vouch-kb[web]'# the browser console ships inside the wheel
vouch serve --transport http --port 8731 & # a backend for the current .vouch/
vouch console # console at http://localhost:5173 β connect it to :8731
vouch console serves the same React console as the Docker demo, straight from the installed package.
For CLI + Claude Code integration (most common ongoing workflow):
bash
# one-liner (Linux + macOS) β picks a Python, ensures pipx, installs vouch-kb
curl -fsSL https://raw.githubusercontent.com/vouchdev/vouch/main/install.sh | sh
# β¦or directly via pipx (vouch-kb on PyPI; the command stays `vouch`)
pipx install vouch-kb
The one-liner is POSIX sh and never needs sudo β inspect install.sh first if you'd like.
For MCP server or CLI-only use:
bash
docker run -i --rm -v "$PWD:/data" ghcr.io/vouchdev/vouch:latest # stdio MCP server
docker run --rm -v "$PWD:/data" ghcr.io/vouchdev/vouch:latest status # any CLI command
For local development β CLI and webapp, both running from source:
bash
git clone https://github.com/vouchdev/vouch
cd vouch
python3 -m venv .venv && source .venv/bin/activate
pip install -e '.[dev,web]'# dev,web is what CI installs β make check needs both
vouch --version # the CLI now runs straight from src/ β edits apply without reinstalling
make console # webapp in dev mode: vouch backend on :8731 + live-reload# console at http://localhost:5173 β Ctrl-C stops both
make check # the CI gate: lint + type + test
make console needs node β it starts vouch serve --transport http and the Vite dev server as a pair, installing the console's node deps automatically on first run. To instead serve the console the way a release wheel does (no dev server), run make webapp-build once, then vouch console. See CONTRIBUTING.md for the full dev workflow.
Reproduce the loop on your project
After exploring the demo above, set up vouch in your own project:
1. Set up the KB and wire Claude Code (one command, one-time, per repo):
bash
cd /path/to/your/project
vouch install-mcp claude-code # creates .vouch/ (if missing) + wires Claude Code
install-mcp initialises the KB when no .vouch/ is discoverable (pass --no-init to skip; vouch init still exists for KB-only setup), then writes .mcp.json (the kb.* MCP tools), the /vouch-* slash commands, and the weight-bearing hooks β SessionStart recall, UserPromptSubmit per-prompt recall, SessionEnd rollup. Per-tool PostToolUse observe / Stop answer are opt-in (capture.realtime; default off). It also registers vouch as a local-scope MCP server in ~/.claude.json (the β line in the output). Reload your editor window (VS Code: Developer: Reload Window) so it loads.
Why the extra registration? A committed .mcp.json is a project-scope server, and Claude Code only loads one after a per-user approval β which the VS Code extension never prompts for, so .mcp.json alone leaves the kb_* tools invisible in the extension (they sit at "pending approval", while the hooks quietly work β easy to misread as "connected"). The local-scope entry install-mcp writes is trusted on sight, so a fresh install just connects. Verify with claude mcp list (vouch β¦ β Connected). Pass --no-approve to skip it and approve .mcp.json yourself.
What you'll see. Every prompt is checked against the KB first. When vouch knows something relevant, the answer opens with "From vouch memory:", grounded in the cited items; when it doesn't, it opens with "Nothing in vouch on this." β recall is visible on every turn, never silent. (A fresh KB knows almost nothing yet: work a session or two so capture fills it, then ask about the project again.)
Prefer one install for every project?vouch install-mcp claude-code --global wires vouch once, machine-wide: user-level hooks and commands in ~/.claude/ plus a user-scope MCP server in ~/.claude.json. Every Claude session in every folder then captures + recalls into that folder's own.vouch/ β data stays per project. Run vouch init once in each project you want vouch in; by default a folder without a KB never captures anywhere β its session opens with a one-line "run vouch init to enable durable memory here" note and the kb_* tools say the same. Safe next to existing per-project installs: duplicate hooks collapse and capture dedups by event id.
Optionally, a personal catch-all KB. The global install asks one question (or pass --personal-fallback; later: vouch hub init-personal --fallback): opt in, and folders without a project KB capture into a personal KB at ~/.local/share/vouch/personal instead of nowhere β each captured source stamped with the folder it came from, and the session banner saying exactly where the knowledge is going. It is one store shared by every KB-less folder: recall in any of them reads the whole personal KB, so knowledge captured while working in one such folder can surface in another (the injected block says so). Projects with their own .vouch/ are never affected. When such a folder later becomes a real project, vouch init + vouch adopt moves its captures into the new project KB through that KB's own review gate: sources copy byte-identically, every claim is re-proposed and its byte-offset receipt re-verified, and the project's review config decides durability β adoption never bypasses review. Strictly opt-in; without it, nothing changes.
2. Point compile at an LLM β the only step that needs a model. In .vouch/config.yaml:
yaml
compile:llm_cmd:"claude -p --model sonnet"
3. Work a session β it captures itself. Use Claude Code normally. Each tool call is harvested into a gitignored scratch buffer, and at session end the buffer rolls up β mechanically, no LLM β into one pending session-summary page. Never auto-approved: the next session greets you with
vouch review # walk pending proposals one at a time
Receipt-verified claims skip the queue by default (review.auto_approve_on_receipt: true in the starter config): each session's captured answers become recallable memory with no review pass. What lands in vouch review is everything the mechanical check can't vouch for β session-summary pages, entities, relations, and claims that can't quote their source. Set the flag to false in .vouch/config.yaml to put every write behind the gate.
Want a browser UI for reviewing and proposing? The video shows the vouch webapp β chat, review queue, claims, and stats. Your options:
No setup: the Docker demo above
pip, no clone: pipx install 'vouch-kb[web]' then vouch console (Python only, no Docker, no node) β open http://localhost:5173
Local development: clone the repo, run make console
Lighter built-in queue: vouch review-ui (also in the [web] extra)
To point any of them at an existing KB, start a backend in your project β vouch serve --transport http --port 8731 β then connect the console to :8731 (for the Docker demo, pass -e VOUCH_TARGET=http://host.docker.internal:8731).
5. Compile the wiki.
bash
vouch compile # LLM drafts cited topic pages from approved claims
vouch review # drafts land in the same gate β approve the keepers
Every [claim: β¦] marker and [[wikilink]] in a draft is verified mechanically against the store; drafts whose citations don't hold are dropped before they reach you. See docs/compile.md.
6. Start the next session β it already knows. The SessionStart hook runs vouch recall, injecting every approved claim and page title into the first turn, so the session starts from your reviewed knowledge instead of re-discovering it.
Detection is Claude Code's hook contract: whatever a SessionStart hook prints becomes context in the session's opening turn. vouch recall prints the digest the video closes on β claims with their full text, pages by id and title:
text
<vouch-approved-knowledge>
# approved KB knowledge for this repo β 2 claim(s), 1 page(s). reviewed,
# cited, durable. use kb_read_page / kb_search for detail; kb_propose_*
# (human-approved) to add more.
## claims
- [auth-uses-jwt] Auth uses JWT tokens β decision from the design note.
- [vouch-starter-reviewed-knowledge] Vouch stores reviewed, cited knowledge
in the repository so future agent sessions can retrieve agreed project
context.
## pages
- [edit-in-obsidian] Edit in Obsidian
</vouch-approved-knowledge>
Only approved artifacts are ever emitted β archived, superseded, and still-pending items are excluded β and the digest is size-guarded (recall.max_chars) with an explicit truncation notice.
How the approved pages actually get used from there: recall carries the titles, and the session pulls full content on demand through the kb.* MCP tools β kb_search matches page bodies, kb_read_page returns a page's markdown plus the claims it cites, and kb_context bundles the most relevant claims and pages for a stated task. To pull a topic in explicitly, use the /vouch-recall <topic> slash command, or just ask Claude to check the KB. One thing to know: pages still sitting in vouch review are invisible to all of this β the gate applies to retrieval too, so a compiled page only starts informing sessions once you approve it.
Pending drafts (proposed/) and the derived search index (state.db) are gitignored β what lands in history is exactly what passed review.
The rules underneath
Writes require approval. Agents file proposals via the kb.* MCP tools (or vouch serve --transport jsonl); approval is the only path to a durable artifact, and the approver must differ from the proposer unless you opt out.
Claims must cite sources. A claim without evidence is a validation error, not a warning. Sources are content-hashed; the same evidence registered twice de-duplicates.
History is append-only. Every mutation lands in a committed audit log β who proposed, who approved, citing what, when.
Going further
docs/example-session.md β the full captureβapproveβrecall walkthrough with real output
docs/mining-on-vouch.md β get paid to improve the retrieval engine: submit ranking code, scored by a reproducible benchmark; the best verified strategy ships as the default
Incubated by Gittensor
Vouch was incubated and supported by Gittensor, a protocol that rewards open-source contributions. The knowledge-base-as-code pattern and review-gated persistence model emerged directly from conversations about trusted AI agents and long-term memory in collaborative development workflows.
License
MIT.
Install
Configuration
Environment variables
VOUCH_KB_PATH
Absolute path to the .vouch directory; if unset, vouch walks up from the cwd to find it.