memo-bank
Enables agents to query a git-native markdown corpus for the specs governing a file in about two reads, plus supports lexical topic search with expansion. Includes maintenance loops that surface uncovered code and stale governing docs to keep the corpus honest.
README
memo-bank
Your specs are contracts. This makes an agent read them before it edits your code — and tells you when they rot.
memo-bank is a read-only MCP server over a git-native markdown corpus, plus two maintenance loops that keep that corpus honest. Point it at a repo and an agent can answer "what rules govern this file?" in about two reads, instead of re-deriving the answer from forty files every time.
MIT licensed · Python ≥3.11 · three dependencies (mcp, python-frontmatter, PyYAML).
Why
Documentation rots in two distinct ways, and most tooling addresses neither:
- Missing — code exists that no doc governs. → the coverage loop surfaces uncovered code that is actually being edited as a ranked "spec-wanted" backlog.
- Stale — a doc exists but the code moved on. → the drift check flags any
governing doc whose governed files changed after its
last_reviewed.
Both run non-blocking on pre-commit. Neither invents content: they tell you what to write and when to revisit, and the corpus stays plain markdown in git.
Install
pip install -e '.[dev]' # from a clone; PyPI publishing not set up yet
memobank --help
Use
Adopting the memo-bank in a new project? See SCAFFOLDING.md.
memobank init --target ../my-project --island my-project --slice umbrella=.
memobank validate ../my-project --index docs/index.json
memobank serve --federation ../my-project/.island-slices.json # the MCP server
memobank coverage --mode staged # missing specs
memobank drift --registry .island-slices.json # stale specs
memobank benchmark --federation .island-slices.json # time-to-context
init writes only what the project owns — .island-slices.json, AGENTS.md,
the corpus skeleton, and the authoring templates. No engine code is copied,
so a project can never carry a forked engine that ages out of sync.
See it work
You're about to edit a file. Ask what governs it:
$ memobank serve … → docs.resolve_path("src/services/api.ts")
hmac-signing-client (matched glob: src/services/api.ts)
→ docs.get("hmac-signing-client") → the contract you must satisfy:
"NEVER log the server token, even partially."
"NEVER sign a path that differs from what the server receives."
Two reads, and the rule that would have bitten you is in hand. Ask about a topic instead, and expansion is what makes lexical search land:
docs.search_live("crawling reviews") → top hit, score 3.0
docs.search_live("refresh fetch ingest cache stale quota") → top hit, score 32.0
Same corpus, same intent — the second query uses the words the docs actually use.
Then the loops keep it honest:
$ memobank coverage --mode staged
⚠ 1 changed file(s) have no governing spec — added to the spec-wanted backlog:
- src/services/audio.ts
$ memobank drift --registry .island-slices.json
⚠ 1 governing doc(s) may be stale — governed code changed since their last_reviewed:
- review-ingestion-status (last_reviewed 2026-06-27) — 7 changed: …
The corpus model
Each slice (a repo, or a subproject within one) owns
docs/{specs,state,archive}/:
| kind | meaning | indexed |
|---|---|---|
spec |
a present-tense contract — "what must hold" | yes (hot) |
state |
a current snapshot — "what the situation is now" | yes (hot) |
archive |
cold history — "what we used to do and why it changed" | no |
Frontmatter is a validated schema; applies_to globs are the precedence surface
(closest glob wins), and cross-references are stable kind:id handles rather
than paths. Specs are written implementation-independent — five sections
(Problem · Contract · Restrictions · Open threads · Code references), with
concrete file references confined to the last one, so the contract survives
refactors.
The tools (MCP surface)
docs.list · docs.get · docs.get_section · docs.resolve_path ·
docs.search_live · docs.search_archive · docs.resolve_term ·
docs.compose_context
They form an incremental-load ladder: pointers → one section → one doc →
ranked search → a budget-bounded bundle. Retrieval is lexical (bag-of-words, no
embeddings, no vendor lock) — so expand a topic query with domain synonyms
before searching; docs.search_live's own description says so, and it roughly
10×'d top-hit scores in practice.
docs.resolve_term reads a term map from .haft/specs/term-map.md or the
docs-native docs/_terms/term-map.md; with neither it reports absent rather
than failing. There is no dependency on any other tool.
Configuration
One file, .island-slices.json, is the whole adoption contract:
{
"island": "my-project",
"slices": [{ "name": "umbrella", "root": "." },
{ "name": "api", "root": "services/api" }],
"source_globs": ["src/**"],
"schema": "docs/specs/schema-frontmatter-v1.md"
}
Only slices is required; everything else defaults. The engine carries no
project literals.
Status
Working software, used on real projects — not a polished product. Known rough
edges: the island/slices vocabulary is inherited from the first project that
used it; memobank init doesn't install the git hook (copy hooks/pre-commit
yourself); last_reviewed is date-granular, so same-day edits after a refresh
re-flag; mcp is pinned <2 (2.x changes the Server API — untested).
Contributions welcome — see CONTRIBUTING.md.
License
MIT — see LICENSE.
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.
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.
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.
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.