knitbrain
knitbrain is a local-first MCP server that acts as a "brain" for coding agents, providing lossless compression, persistent memory, code intelligence, and a verify-gated closed loop to reduce token usage and improve agent effectiveness.
Token Optimization & Retrieval
Compress code, logs, diffs, and prose into skeletons (~46% average token reduction), recoverable via
⟨recall:hash⟩handles (knitbrain_optimize,knitbrain_retrieve)Read project files as compressed skeletons instead of raw content (
knitbrain_read)Search code at function/class level with ranking, returning only relevant chunks (
knitbrain_search_code)
Knowledge Graph & Code Intelligence
Scan the project to build an import/export dependency graph (
knitbrain_scan)Query what a file imports, exports, or what depends on it — useful for blast-radius analysis (
knitbrain_query_imports,knitbrain_query_exports,knitbrain_query_dependents)Verify codebase facts against the knowledge graph to prevent hallucinations (
knitbrain_verify_claim)
Memory & Learnings
Persist non-obvious project insights with tags, search and retrieve them across sessions, and rate their usefulness — wrong learnings get discredited (
knitbrain_record_learning,knitbrain_search_learnings,knitbrain_learning_outcome)Fan a query across all memory stores (learnings, wiki, knowledge graph) in one call (
knitbrain_brain_search)
Session Management
Save and restore session handoff state so the next session can resume where the last left off (
knitbrain_save_handoff,knitbrain_load_session)Monitor context window usage and tokens saved (
knitbrain_context_meter)
Wiki Brain
Write, update, and query a compounding synthesized wiki across sessions (
knitbrain_wiki_ingest,knitbrain_wiki_query)Detect contradictions and orphan pages (
knitbrain_wiki_lint)
Task Classification & Orchestration
Tier tasks as inquiry/trivial/standard/complex with phases and a plan-mode signal (
knitbrain_classify_task)Central orchestrator that classifies tasks, finds skills, proposes agents, and reports context (
knitbrain_run)
Skills System
Compose, save, and rate project-tailored playbooks; failures fold into pitfalls and repeated failures flag the skill for revision (
knitbrain_compose_skill,knitbrain_skill_save,knitbrain_skill_outcome)
Agents
Auto-detect project domains and propose scoped subagent definitions with file scope, allowed tools, review gates, and context budgets (
knitbrain_propose_agents,knitbrain_create_agent)
Closed Loop Goal Execution
Run autonomous verify-gated task loops that iterate until a verify command exits 0, with optional deadlines and max iterations (
knitbrain_run_loop)Audit brain health invariants (anti-stale, anti-drift, anti-sycophancy, etc.), auto-fixing where possible (
knitbrain_self_check)
Project Onboarding
Scan the repo, import past sessions into the wiki, ask intent questions, and generate a Project Charter (
knitbrain_onboard)
Team Collaboration
Post compressed findings to a shared team board and retrieve them by ID (
knitbrain_team_post,knitbrain_team_board,knitbrain_team_get)
Telemetry
Health check, compression metrics, recall-store tier counts, and per-kind retrieval rates (
knitbrain_ping,knitbrain_metrics)
Optimizes OpenAI API requests through a proxy that compresses token usage, especially for past turns and bulk content, while keeping instructions verbatim and enabling retrieval of originals.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@knitbrainoptimize my current context window"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Everyone is wiring coding agents into loops — goal in, iterate until done. Every loop fails the same three ways: the agent lies ("done!" with red tests), it runs away (iteration 47, nothing converging), and it goes broke (context resent and re-derived until the window or the bill gives out).
knitbrain is the substrate those loops run on — a local-first MCP server (37 tools) plus a hook layer for Claude Code, Codex CLI, Cursor, Gemini CLI, and VS Code Copilot:
Can't lie — "done" means your verify command exited 0. The loop's gate is a real process exit code, never the model's opinion. Hooks block the agent from stopping while the goal is unmet.
Can't run away — every loop carries hard breaks: max iterations, wall-clock deadline, and a per-cycle failure history injected into the next attempt so it converges instead of thrashing.
Can't go broke — lossless compression (byte-exact recall, never-expanding), function-level retrieval instead of whole files, persistent memory instead of re-derivation — and a session receipt that shows exactly what was saved and where.
Pure Node, three runtime dependencies, no Python, no ML runtime. Everything lives under
~/.knitbrain; the proxy, hub, and dashboard bind 127.0.0.1. Nothing leaves your machine.
Quick start
npx knitbrain profile # 1. measure compression on YOUR transcripts — see the number first
npm install -g knitbrain # 2. install
knitbrain setup # 3. wire into your agent(s): MCP config, hooks, rules, slash commands
knitbrain onboard # 4. scan the repo + import past sessions into the brainThen open your agent and answer the 5-question interview (or just say "onboard this project") —
it writes a Project Charter, a per-part workflow, and a loop-ready goal.md. From that point,
stating a goal in plain words is enough: the ambient frame turns it into a verify-gated loop.
Requires Node ≥ 18.
Related MCP server: local-memory-mcp
The three legs
STATE — one brain, every session, every tool
Learnings ranked by outcome (a learning reported wrong is discredited and sinks), an
imports/exports/dependents knowledge graph that re-scans itself on read, session handoffs that
survive /clear, and a compounding wiki. Onboarding scans your whole toolkit — skills, agents,
commands, hooks, across project, global, and plugin tiers — and composes a standing workflow (GOAL,
VERIFY, CONSTRAINTS, per-part ROUTING) that re-surfaces every session. The same brain serves every
MCP client: explain the project once, Cursor inherits what Claude Code learned.
OPTIMIZATION — lossless, measured, felt
Retrieval:
knitbrain_search_codereturns ranked, score-gated function-level chunks with graph context — the agent reads hits, not trees.Compression: large tool output collapses to a structure-preserving skeleton plus a
⟨recall:hash⟩handle; the exact original is content-addressed on disk and one call away. Small or incompressible payloads pass through untouched. JSON tool responses are never skeletonized — machine contracts stay parseable.Attribution: every optimization event — MCP tool, hook, or proxy — lands in one ledger, so the session receipt can tell you which door saved what.
ENFORCEMENT — the workflow is not advice
All five major agent platforms now ship hook systems. knitbrain's one hook binary auto-detects the calling platform from the payload itself and speaks its dialect:
Enforcement | Claude Code | Codex CLI | Cursor | Gemini CLI | VS Code Copilot |
Deny a violating tool call | ✅ | ✅ | ✅ | ✅ | ✅ |
Block stop while goal unmet | ✅ | ✅ reason becomes next prompt | ➖ follow-up injection | ✅ deny + auto-retry | ✅ |
Inject the goal frame | ✅ every prompt | ✅ every prompt | session start only | ✅ | ✅ |
Rewrite oversized reads | ✅ | context pointer | ✅ (MCP outputs) | context pointer | ✅ |
Your Project Charter's CONSTRAINTS line is enforced physically: write "NEVER npm publish without
OK" during onboarding and the PreToolUse hook denies npm publish at the tool boundary — on every
platform above. The differences in the table are each host's documented API ceilings, stated
honestly, not gaps we hide.
Loops
One engine, three ways in — the headless loop is the front door:
Headless (the front door):
knitbrain loop goal.mddrives a checkbox goal file outside any editor — survives laptop-close, ticks a box only when the verify command exits 0, and never commits/pushes/deploys. Point any scheduler at it (see Triggers below). Add an independent reviewer with--reviewer "<cmd>"or aREVIEWER:line in the goal file — writer≠judge: both verify AND reviewer must exit 0 before a box ticks, and reviewer rejections feed the next attempt's prompt.knitbrain fanruns N workers in parallel, each in its own git worktree, draining the same queue.Ambient (after onboarding): say what you're working on; the injected frame classifies it — actionable requests become goals driven through
knitbrain_run_loopuntil the verify gate passes; questions get answered directly.Two slash front doors, on every host that has a slash surface (Claude Code, Codex, Gemini, VS Code Copilot, Windsurf — Cursor via terminal):
/goal-knitbrain <done-means>drives the gate with you, in this session —knitbrain_runorchestrates a skill + agents, thenknitbrain_run_loopruns your verify command each cycle until it exits 0. Single context, interactive./loop-knitbrain goal.md --for 2hhands off to the external runner (knitbrain loop): it launches detached, spawns a fresh agent per checkbox, and owns the loop itself — surviving your context window, not depending on any model choosing to continue. A slash command can't be an hour-long loop, so it launches the runner and hands back a watch handle.
Self-healing: each failed cycle's verify output is persisted (failures[], last 3) and
injected into the next directive — "previous failures — iter 1: …. Address the ROOT CAUSE" — so
loops converge in fewer iterations without shortcuts. An adherence gate blocks memory writes until
a task was classified: unverified "done" cannot enter the brain.
Triggers
knitbrain is the target of triggers, never the scheduler — your host (cron, launchd, CI,
Claude Code /schedule, Codex schedules) owns when; the loop owns honest-until-done. Exit codes
are scheduler-friendly: 0 = goal done or clean stop, 1 = gate still red or infra failure —
alert on 1.
# weekdays 9am: drive the goal for up to 2h, lint as the independent reviewer
0 9 * * 1-5 cd /path/to/repo && knitbrain loop goal.md --for 2h --reviewer "npm run lint" >> ~/.knitbrain/loop-knitbrain.log 2>&1Same one-liner works as a launchd ProgramArguments, a CI cron job step, or the command behind
your agent's scheduler.
The receipt
Optimization you can't see is optimization you don't trust. When a session ends, the Stop hook
prints an honest receipt (also available mid-session via /meter):
— knitbrain session receipt —
consumed ~281k tok · avoided 16.0k tok (5% of what would have been)
top sinks:
Bash: 10.0k → 2.0k tok (saved 8.0k)
request: 9.0k → 6.0k tok (saved 3.0k)
src/big.ts: 6.0k → 1.0k tok (saved 5.0k)
hygiene:
re-read unchanged ×2: /proj/dup.ts
1 oversized raw read(s) redirected to knitbrain_read
lifetime: 141.7k tok saved · 394 exact recallsHonest-math rules, enforced structurally: tokens count as "saved" only when a raw output actually existed and was replaced or redirected — redirects themselves record zero (the follow-up read counts once). Estimates are labeled estimates. A session with no savings says so plainly instead of inventing a number.
Measured, not promised
Run these on your own data — every number below is reproducible with one command.
Measurement | Result | Reproduce |
Average reduction over ~3M real tool-result tokens | ~46% (≈55% on blocks ≥ 400 chars) |
|
Weighted real-shape benchmark (code · logs · JSON · diffs · prose) | 68% |
|
Answer preservation (round-trip · identifiers · error/summary lines) | 100% |
|
These are the ceiling — what you save when output flows through the optimizer. Your
realized number is the receipt and the live meter (knitbrain dashboard), which count only
what actually passed through. Honest expectations: 60–70% on code/JSON/logs, ~18% on prose, ~48%
all-inclusive on measured real sessions — less inside an already-lean harness, more on raw API
traffic. And honestly: per-request optimization cannot offset provider cache-cold re-reads or
subagent spawns — the meter warns you when a handoff + fresh session is the cheaper move.
How it reaches your traffic
The optimizer is identical everywhere; what differs is reach:
API key — a loopback proxy (
knitbrain wrap <agent>) compresses every request on the wire, keeps the provider's prompt-cache discount intact (CacheAligner: stable prefix, volatile lines moved to a marked tail), detects the model's context window, and can inject a terse-output directive (KNITBRAIN_TERSE=1).Subscription (OAuth) — the wire can't be intercepted (true for every tool in this space), so knitbrain works through the MCP + hook surface instead:
knitbrain_readfor files, PreToolUse redirecting oversized raw reads, and PostToolUse skeletonizing Bash/Grep/Glob/WebFetch output in place. Assistant prose lands in the host's transcripts — SessionStart mines new ones into the brain automatically.
Platform support
Platform | MCP tools | Hook enforcement | Auto-compression | Slash commands |
Claude Code | ✅ | ✅ full (deny · stop-block · inject · rewrite) | ✅ hooks |
|
Codex CLI | ✅ | ✅ full ( | hooks + |
|
Cursor | ✅ | ✅ deny + follow-up loop ( | hooks + | — (no slash API; documented in rules) |
Gemini CLI | ✅ | ✅ deny + AfterAgent loop ( | hooks + |
|
VS Code Copilot | ✅ | ✅ full (reads | hooks + |
|
Windsurf | ✅ | ✅ deny-only (exit-2) ( | hooks + |
|
Cline · any other MCP client | ✅ | — (advisory; hooks planned where APIs allow) | via | — (runner works from any terminal) |
Any agent, API key | ✅ | — | ✅ proxy (full wire) | — |
One hook binary serves every row: it detects the calling platform from the payload and answers in
that host's schema. Where a host's API can't do something (Cursor can't block stop; Gemini can't
rewrite output), knitbrain degrades to the nearest honest mechanism instead of claiming otherwise.
/goal-knitbrain and /loop-knitbrain ship for every host with a slash-command surface — each in that host's native
format — so both front doors are the same everywhere. Cursor has no such surface; there the runner
is a terminal command (knitbrain loop), documented in its always-on rules.
Commands
Command | What it does |
| Start the MCP server on stdio — what your editor invokes. |
| Wire into your agent(s): MCP config, hooks, rules, slash commands, |
| Scan the repo + import past sessions into the brain; start the charter interview. |
| Measure compression on your real transcripts. |
| Answer-preservation gates on your transcripts (exit 1 on failure). |
| Headless verify-gated loop over a checkbox goal file; |
| Parallel loop — N workers in isolated git worktrees. |
| Live local dashboard ( |
| Launch an agent through the optimizer proxy (API-key setups). |
| Terse-rewrite a memory file (e.g. |
| Mine past sessions for failure → success corrections. |
| Print the terse-output guide (lite / full / ultra). |
| Optional team hub — shared findings over one URL and token. |
| Tokens-saved badge for your editor's status line. |
| Print the operating prompt (for non-MCP platforms). |
Guarantees
Gated by tests and CI, not promised:
Lossless — every compressed payload recovers byte-for-byte; the round-trip test gates the build.
Never-expand — output tokens ≤ input tokens, always.
Answers survive — error lines, result summaries, and top-level declarations are never elided (
knitbrain evals, 100% on real transcripts).Machine contracts hold — JSON tool responses are never skeletonized.
No false green — the loop marks a task done only after a real verify passes; hooks block premature stops.
Honest receipt — savings are counted only when a raw output was actually replaced or redirected; estimates are labeled; zero is reported as zero. Subagent burn (Claude Code Task subagents, Codex CLI's alias) is attributed to the activity ledger via
SubagentStart/SubagentStop, so nested-agent token spend isn't invisible to the receipt.Local-first — proxy, hub, and dashboard bind
127.0.0.1; credentials are read locally, sent only to the provider's own endpoint, never logged or stored.Reproducible — every number in this README comes from a command you can run on your own data.
Self-audited —
knitbrain_self_checkruns seven invariants (anti-stale ×2, anti-drift ×2, anti-sycophancy, adherence, context-hygiene) in one pass.
Two integration notes worth knowing up front:
Parsing tool results programmatically? A large non-JSON response may carry a trailing
⟨recall:hash⟩handle — strip it (or retrieve the original) before parsing.The adherence gate blocks close-the-loop writes until a classifier ran this session (
KNITBRAIN_STRICTNESS, defaultblock; setwarnoroffto relax).
Use as a library
import { createOptimizer } from "knitbrain";
const opt = createOptimizer(); // optional: { ccrDir, params }
const r = opt.optimize(bigToolOutput); // { text, saved, handle, contentType }
const original = opt.retrieve(r.handle); // exact bytes backDevelopment
git clone https://github.com/PDgit12/knitbrain && cd knitbrain
npm install
npm run verify # typecheck · lint · build · test · consistency · bench — all gates
npm run e2e # end-to-end against the built artifactContributions welcome — branch off main, conventional commits, npm run verify green before any PR.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PDgit12/knitbrain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server