CodeBrain
An MCP server that offloads bulk coding tasks to local LLMs, allowing Claude Code to delegate repetitive work like boilerplate generation and code polishing while preserving its context for complex reasoning.
README
CodeBrain
An MCP server that lets Claude Code offload bulk work to a local LLM running on your own hardware.
What this is (and isn't)
Is: A Model Context Protocol (MCP) server that Claude Code registers as a sub-agent backend. When a session includes the kind of task a 14B local coder model handles well — generating 50 event templates, polishing 20 React components, drafting boilerplate — Claude Code calls into CodeBrain instead of spending its own output tokens. The local model does the bulk draft, Claude reviews and applies.
Is not: A Claude replacement. The reasoning, architecture decisions, debugging, and anything where "close enough" isn't good enough stays with Claude. CodeBrain is a Claude-offloader, not a Claude-competitor.
Why: Large-volume content and polish work burns through Claude's context and rate limits fast. A local model you can run unlimited costs nothing extra per call and keeps the high-value context free for the hard parts of the session.
Status
Phases 1–4 complete, Phase 5 deferred. Nine tools exposed, .brain/context.md passthrough live, per-file brain summaries scanner, verifier loop, consensus decoding. MCP integration verified in a real Claude Code session. Phase 5 (RAG) was explicitly scoped as "only if needed" and current use doesn't show cross-file search as a bottleneck, so it stays deferred.
How it works
Claude Code session CodeBrain MCP server Local machine
───────────────────── stdio ─────────────────── ─────────────
Claude delegates a ────────► codebrain_generate() ────► Ollama HTTP
bulk / polish task codebrain_explain() (localhost:11434)
codebrain_status() │
▼
Qwen2.5-Coder 14B
(GPU)
Claude reviews, ◄──────── tool result string ◄──── streamed response
applies, or pushes back
Nine tools are exposed today:
| Tool | When Claude would reach for it |
|---|---|
codebrain_generate(prompt, system, use_brain) |
Bulk content, boilerplate, repetitive transformations, first drafts |
codebrain_batch_generate(prompts, system, use_brain) |
N prompts with one shared system message, serial execution, index-stable errors so one failure doesn't abort the batch |
codebrain_polish(text, instructions, use_brain) |
Targeted transform over existing text — shorten, rephrase, translate, tighten. Auto-retries on no-op output. |
codebrain_explain(code, question) |
Quick read-only explanations without burning Claude context |
codebrain_generate_verified(prompt, min_words, max_words, must_match, max_retries) |
Generation with deterministic verifier loop: word-count / regex-schema checks, tightened-instruction retry on violation |
codebrain_consensus_generate(prompt, n) |
N candidates + judge call → best single output. Use on high-variance tasks. |
codebrain_init(root, force) |
One-shot repo onboarding: detects stack, writes .brain/context.md template |
codebrain_scan_file(path, force) |
Generate or refresh one <source>.brain summary file |
codebrain_scan_repo(root, force, extensions, exclude_dirs) |
Walk + scan a tree; hash-gated, per-file failures don't abort the batch |
codebrain_status() |
Check which models are installed locally |
The use_brain flag on generation tools automatically prepends .brain/context.md from the current working directory to the system prompt, so project-specific context travels with every call without Claude having to pass it manually.
Requirements
- Python 3.11+
- Ollama — download for your OS. Tested with Ollama on Windows native, talking over
localhost:11434. - A coder model pulled locally:
~9 GB download. Fits in 12 GB VRAM at Q5. Other models work too (DeepSeek-Coder, Qwen3 if available) — set viaollama pull qwen2.5-coder:14bCODEBRAIN_MODELenv var. - Claude Code CLI on the machine that will call the server (obviously).
Install
git clone <this repo> CodeBrain
cd CodeBrain
python -m venv .venv
.venv\Scripts\activate # on Windows
# source .venv/bin/activate # on macOS / Linux
pip install -e .
Configure Claude Code
Add CodeBrain to your Claude Code MCP config. On Windows, that's usually ~/.claude.json (adjust path to where you cloned):
{
"mcpServers": {
"codebrain": {
"command": "C:\\Users\\YOU\\Desktop\\CodeBrain\\.venv\\Scripts\\python.exe",
"args": ["-m", "codebrain"]
}
}
}
Restart any Claude Code session — the five codebrain_* tools should now appear in the available-tools list.
Keep brain files in sync automatically
Once you've run codebrain_init on a repo and scanned it with codebrain_scan_repo, you probably want brain files to refresh automatically whenever Claude edits source. Two pieces wire that up:
1. Project CLAUDE.md snippet — tell Claude to read brain files before opening source:
## Brain files
This repo has per-file `.brain` summaries next to each source file.
Before reading a full source file, read its `<path>.brain` sibling first.
Only open the source when the brain file is insufficient for the task.
2. PostToolUse hook — regenerate the brain after every Edit/Write.
Add to .claude/settings.json in the repo root:
{
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "python -c \"import asyncio, json, sys; from codebrain.brain_scanner import scan_file; d = json.load(sys.stdin); p = d.get('tool_input', {}).get('file_path'); p and p.endswith(('.py', '.ts', '.tsx', '.js', '.jsx', '.java', '.go', '.rs')) and print(asyncio.run(scan_file(p)))\""
}
]
}
]
}
}
The hook inspects the edited path, skips non-source files via the extension filter, and kicks off a scan. Hash-gated: unchanged files don't hit Qwen.
Sanity check
Inside a Claude Code session, ask Claude:
Call
codebrain_statusand tell me what's installed.
If Ollama is running and the model is pulled, you'll get back qwen2.5-coder:14b in the list.
Configuration
Environment variables read by the backend:
| Variable | Default | What it does |
|---|---|---|
CODEBRAIN_OLLAMA_URL |
http://localhost:11434 |
Point at a remote Ollama (e.g., an inference box on your LAN) |
CODEBRAIN_MODEL |
qwen2.5-coder:14b |
Switch to any model you've pulled |
CODEBRAIN_TIMEOUT |
300 |
Seconds to wait for a single generation |
Project structure
CodeBrain/
├── codebrain/
│ ├── __init__.py
│ ├── __main__.py # `python -m codebrain` entry
│ ├── backend.py # Ollama HTTP client
│ ├── server.py # FastMCP server + tool definitions
│ ├── brain_scanner.py # scan_file / scan_repo + hash gate
│ ├── brain_init.py # one-shot .brain/context.md seeding
│ ├── verifier.py # deterministic output checks
│ └── prompts/
│ └── brain_few_shot.md # few-shot for brain-file generation
├── tests/ # 96 unit + integration tests
├── .spec/
│ ├── CURRENT.md # phase state
│ └── brain-file-format.md # brain-file format v1
├── pyproject.toml
├── LICENSE
└── README.md
Roadmap
Phase 1 — scaffold ✓
- [x] Ollama HTTP client with error handling
- [x] FastMCP server with stdio transport
- [x] Three core tools:
generate,explain,status - [x] Documented setup + Claude Code config
- [x] Verified in a real Claude Code session
Phase 2 — batch & context ✓
- [x]
codebrain_batch_generatefor mass content with one shared system prompt, index-stable errors - [x]
codebrain_polishfor targeted transforms (shorten / rephrase / translate) instead of regeneration - [x]
.brain/context.mdpassthrough — cwd project context auto-prepended to every generation call - [x] Dogfood: coding tasks solid, text-transform tasks revealed real limits (informs Phase 3)
Phase 2.5 — brain system ✓
Per-file <source>.brain summaries sit next to each source file. Claude reads the brain first and only opens the source when the brain is insufficient.
- [x]
codebrain_scan_file(path, force)— generate or refresh one brain file - [x]
codebrain_scan_repo(root, force, extensions, exclude_dirs)— bulk walk + scan - [x]
codebrain_init(root, force)— seed.brain/context.mdwith stack detection - [x] Hash-gated regeneration (SHA256) — idempotent reruns
- [x] Programmatic frontmatter — deterministic
source,source_hash,model; Qwen only writes the five sections - [x] Defense-in-depth validation: fence-strip, skip-empty-sources (<10 chars), section-presence/order, retry-on-invalid
- [x] CLAUDE.md convention + PostToolUse hook snippet in this README
Phase 3 — VERIFIER loop ✓
Dogfood showed the local model drifts on text transforms. The verifier catches no-ops, length violations, and schema misses deterministically before they reach Claude.
- [x]
detect_noop— whitespace-normalised equality check (auto-retries insidecodebrain_polish) - [x]
check_word_count(min_words, max_words)— bounded-window gate - [x]
check_regex_schema(pattern)— structured-output check - [x]
codebrain_generate_verified(prompt, min_words, max_words, must_match, max_retries)— loop with tightened retry instructions, returns[codebrain warning] ...if verification fails after retries
Phase 4 — consensus decoding ✓
- [x]
codebrain_consensus_generate(prompt, n)— generate N candidates (clamped to [2,5]), Qwen picks the best verbatim. N+1 inference calls, tightens quality on high-variance tasks. - Multi-pass skeleton→logic→edges→polish: deferred (low measured value; individual tools already compose).
Phase 5 — RAG (deferred — not a bottleneck)
Brain files already act as an index; cross-file RAG only makes sense if future use actually shows that indexing is the blocker. No current signal for it, so not built.
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。