Cited Q&A over your own notes, plus drift detection when a cited source changes. Local-first CLI.
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.
Ask questions about your own notes. Get answers that cite their sources β and a daily check that tells you when a source has changed underneath a conclusion you already trusted.
Zero runtime dependencies. Everything is node:sqlite and files on your disk.
No account, no cloud call unless you point it at one.
Requires Node 23.6+ β Chamber runs TypeScript directly, with no build step.
No config, no database, no model, no network. It builds a throwaway workspace,
runs the real code paths against it, and deletes it (--keep to look around).

That recording is scripted from assets/demo.tape rather
than hand-captured, so it is regenerated when the output changes instead of
quietly showing a version of Chamber that no longer exists. Everything below is
the same command's actual output, trimmed:
That is the ordinary state: a belief standing on evidence that still holds. Then
someone edits the note it was built on β 30 days becomes 14 days:
Nobody asked it to re-examine that belief. The conclusion did not change; the ground under it did, and the exit code is non-zero, so a scheduled job can act on it. That is the whole product.
Four more scenarios β a rolled-back ledger caught by an outside anchor, a
sandbox that refuses rather than degrade, a hostile tool catalogue rejected β
are in demos/, and run in CI so they cannot drift from the code.
Everything Chamber does is rows in one SQLite file. Each term in the transcripts names a table or a hash:
| Word | What it actually is |
|---|---|
| passage | one chunk of one markdown file. refunds.md#p0 is file path + chunk index. |
| belief | a row in belief: one asserted sentence, linked to the passages it stands on. |
| pin | a sha-256 of a cited passage's stored title, body and ref, taken at the moment of citation and kept in belief_source. |
| verify | re-read every pinned passage, recompute the hash, compare. Any mismatch exits non-zero. No model involved. |
| citation debt | a row in citation_debt, created when an assertion commits with no source. The same claim cannot commit again until the debt is paid. |
| pay-debt | retrieval proposes passages for the indebted claim; accepting them pins them. |
| APORIA | the verdict when no retrieved passage supports an answer. The reply is "I don't know", recorded as that. |
| gate | a check and a write inside one SQLite transaction β both commit or neither does. |
| audit log | append-only audit_event; each row's hash covers the previous row's hash, so editing history breaks every hash after it. |
| anchor | the log's root hash stored outside the database, so truncating the log is detectable rather than silent. |
| the scheduler | a launchd/systemd job running ingest + verify, notifying only on drift. |
None of it is hidden machinery: sqlite3 ~/.local/share/chamber/chamber.sqlite '.tables' shows the whole thing.
With a model configured, chamber ask judges every sentence on its own
citations. Against the same two sample notes, on a local 30B:
The model is shown [1]β¦[k] and never a document id or a hash, so it cannot
fabricate a citation even in principle β the numbers are resolved back to files
after the answer is written. A sentence that cites nothing is marked
UNSUPPORTED: recorded, but not treated as load-bearing.
Asking something the corpus cannot answer is the more important case:
Both notes are in the index and both are relevant. Neither answers the question, so nothing is composed from the pieces.
Then edit that config to add a notes folder and a model:
model.base may name any OpenAI-compatible endpoint. A loopback address needs
no API key; anything else reads CHAMBER_API_KEY from the environment, never
from the file.
Set your excludes before the first ingest. There is no default exclude list.
Pointed at a folder of exported chat logs, Chamber will happily index all of
them and answer from them β see chamber corpus and
docs/KNOWN_LIMITATIONS.md entry 11.
The same verify loop works on a repo: claims in docs pinned to passages of
code or policy, chamber verify --json failing the build when the ground
moves. One line in a workflow β this repo ships the action:
docs/CI_DRIFT_GATE.md is the one-page recipe;
demos/06_ci_drift_gate.ts is the runnable
transcript.
deploy/launchd/com.chamber.verify.plist (macOS) and deploy/systemd/
(Linux) run ingest and verify on a schedule, and raise a notification only when
something drifted. A check that correctly reports nothing on most days is a
check you stop reading, so it stays quiet until it isn't.
The companion plugin Chamber Drift
renders verify --json's report as a vault sidebar panel and a per-note
banner β nothing more. It never verifies and never writes; Chamber does both,
on its own schedule, outside Obsidian. Setup, including the report-writing
one-liner and the Obsidian Sync caveat: docs/OBSIDIAN.md.
src/mcp_server.ts exposes three tools over MCP β chamber_ask,
chamber_verify, chamber_corpus β so a host like Claude Code can query your
corpus and see the per-claim citation verdicts rather than just the prose.
From the npm package, the server is one subcommand:
That form works when the host's spawn environment can resolve a Node 23.6+
npx. When it cannot β and MCP hosts often spawn with a minimal PATH β name
the interpreters absolutely:
Both absolute paths are deliberate. A spawned MCP server does not inherit your
interactive shell's PATH: node may resolve to a version below the 23.6
floor, and python3 to one without onnxruntime β which makes the embedder
fall back to non-semantic hash vectors and every question answer "nothing in
the corpus matches." Naming the interpreters is the only reliable fix. See
docs/KNOWN_LIMITATIONS.md entry 15.
The server resolves config once, on its first tool call, and pins it for the
life of the process β so reconnect the server after editing config. Editing
model.base while a host held the process open produced ECONNREFUSED against
the old address while the CLI answered fine from the same file, which reads
as a broken config rather than a stale daemon. The resolved database, mode and
base are printed to stderr on first use so the host's MCP log can settle it.
Nothing on that surface can activate a skill, approve a pending write, or ingest β the gates exist so a human passes through them, and handing a model the approval side would invert them rather than weaken them.
chamber_ask is not read-only, and the write is not just bookkeeping: every
claim goes through the commit gate, so a claim with verified citations is
recorded as a belief with its pins β which is exactly what chamber verify
later re-checks for drift. Unsourced assertions mint citation debt; spend is
recorded. This is the same behaviour as chamber ask on the command line. The
guarantee is that the gate is not bypassed, not that nothing is written.
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/chamber)<a href="https://allmcps.com/mcp/chamber"><img src="https://allmcps.com/api/badge/chamber?style=directory" alt="Chamber on AllMCPs" /></a>