agentboost
Click on "Deploy 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., "@agentboostPlan the implementation of user authentication."
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.
Make your coding agent plan better, remember more, verify its own work, and stay safe โ in under 5 minutes.
A thin, pluggable enhancement layer for the agents you already use. One MCP server ยท a clean CLI ยท a local dashboard.
Why AgentBoost?
Coding agents are powerful but unreliable in predictable ways: they go off-track, over-engineer, lose context between sessions, plan weakly, and occasionally run something dangerous. Most fixes mean adopting a heavy new platform.
AgentBoost takes the opposite bet. It's a thin layer that plugs into your existing agent and does five things well:
The agent keeps thinking. AgentBoost gives it structure, memory, guardrails, and feedback โ all stored in a plain
.agentboost/folder you can read, diff, and edit.
๐ No lock-in โ works with Claude Code, Cursor, OpenCode, Codex, and any MCP client
๐ No API keys, no cloud โ your agent does the reasoning; data never leaves your machine
โฑ๏ธ Useful in 5 minutes โ one command to init, one to connect, one to open the dashboard
Related MCP server: CodeGraph
โจ Features
Feature | What it does | |
๐งญ | Structured Planning | Turn a natural-language goal into a clean Spec + small, individually verifiable steps. Refine iteratively; track per-step status. |
๐ง | Context & Memory | Persistent project memory โ decisions, architecture, preferences, and hard-won learnings. Keyword search, importance-aware pruning, one-call context injection. |
โ | Automatic Verification | Auto-detects your test / typecheck / lint / build commands (npm, tsc, pytest, go, cargo, make), runs them, and returns clear pass/fail to drive fix loops. |
๐ก๏ธ | Safety & Permissions | Three permission levels + dangerous-op detection ( |
๐งฉ | Parallel Sub-agents | A bounded, concurrency-capped task runner with simple result aggregation for fan-out work. |
๐ | Local Web Dashboard | See the current phase, plan progress, memory, verification results, and a live activity log โ edit memory and permissions right from the browser. |
๐ธ Dashboard
agentboost gui opens a clean, localhost-only dashboard that shows everything at a glance:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โก AgentBoost my-project [ executing ] Permission โพ โปโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Current Plan โ Verification [Run checks]โ
โ Ship search feature โ โ
test npm run test โ
โ โโโโโโโโโโ 3/5 done โ โ
lint npm run lint โ
โ [x] Add DB index โ โ build npm run build โ
โ [~] Wire /search API โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ [ ] Add integration tests โ Project Memory [+ Add]โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค [decision] Use SQLite โ
โ Safety Check โ [architecture] REST, not gRPC โ
โ > rm -rf build/ โ critical โ [preference] 2-space indent โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ๐ก Real screenshots/GIFs belong in
docs/screenshots/โ run the dashboard againstexamples/demo-projectto capture them.
๐ Quick Start
# 1 ยท Initialize AgentBoost in your project (creates .agentboost/)
npx agentboost init
# 2 ยท Open the dashboard
npx agentboost gui
# 3 ยท Print the MCP config for your agent
npx agentboost adaptersConnect Claude Code โ drop this into .mcp.json at your project root and restart:
{
"mcpServers": {
"agentboost": {
"command": "npx",
"args": ["-y", "agentboost", "mcp"],
"env": { "AGENTBOOST_ROOT": "." }
}
}
}Then just tell your agent: "Plan this with AgentBoost first." It calls plan_start โ plan_create, records decisions with memory_add, runs verify_run after changes, and checks risky commands with safety_check โ all visible live in the dashboard.
๐ Full walkthrough (install, every agent, examples, troubleshooting): docs/guide.md
๐ Supported agents
Agent | Integration | Config |
Claude Code | MCP server |
|
Cursor | MCP server |
|
OpenCode / Codex | MCP server | |
Any MCP client | stdio MCP |
|
No agent (CLI) | terminal | every feature works standalone |
๐ ๏ธ How it works
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
your agent โโโโโถโ AgentBoost MCP server โ
(Claude/โฆ) โ plan ยท memory ยท verify ยท โ
โ safety ยท status โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโ
you โโโถ CLI โโโโโโโโโโโโโโโโโโโโค one shared core
you โโโถ GUI โโโโโโโโโโโโโโโโโโโโ โ
โผ
.agentboost/ (plain files)
config.yaml ยท memory.json ยท plans/ ยท state.json ยท audit.logThe MCP server, CLI, and dashboard are three faces of one core, reading and writing a single plain-file data directory. Nothing is hidden โ inspect it, diff it in git, or hand-edit it.
๐งฐ MCP tools
The agent-facing surface is 13 focused tools:
Category | Tools |
Planning |
|
Memory |
|
Verification |
|
Safety |
|
Status |
|
๐ Project structure
agentboost/
โโโ src/
โ โโโ core/ planning ยท memory ยท verification ยท safety ยท audit ยท sub-agents ยท facade
โ โโโ mcp/ MCP server (primary agent integration)
โ โโโ gui/ local dashboard: http server + static SPA (no build step)
โ โโโ cli/ command-line tool
โโโ adapters/ Claude Code ยท Cursor ยท OpenCode config templates
โโโ examples/ runnable demo project
โโโ docs/ bilingual operation guide + screenshots
โโโ test/ node --test suite๐ฆ Install
Zero-install via npx agentboost <command>, or install globally:
npm install -g agentboostRequirements: Node.js โฅ 18. Minimal dependencies โ MCP SDK, commander, yaml, zod.
๐งช Development
npm install
npm run build # compile TS + copy static assets to dist/
npm test # run the test suite (node --test)
npm run dev -- status # run the CLI from source via tsxContributions welcome โ see CONTRIBUTING.md.
๐บ๏ธ Roadmap
Real dashboard screenshots & a short demo GIF
plan_starttemplates for common task types (bugfix, feature, refactor)Richer verification (coverage thresholds, custom gates)
Optional standing-context sync with
AGENTS.md/CLAUDE.mdPublish to npm
๐ License
MIT ยฉ AgentBoost contributors
๐ ไธญๆ็ฎไป
AgentBoost ๆฏไธไธช่ฝป้ใๅฏๆๆ็ๅขๅผบๅฑ,่ฎฉไฝ ็ฐๆ็็ผ็ Agent(Claude CodeใCursorใOpenCodeใCodex)่งๅๆดๆธ ๆฐใ่ฎฐๅฟๆดๆไน ใ่ฝ่ชๅจ้ช่ฏใๆไฝๆดๅฎๅ จใ
ๅฎไธๆฏๅไธไธชๅบๅคง็ Agent ๅนณๅฐ,่ๆฏไธๅฑ่่็ๅขๅผบ:Agent ่ด่ดฃๆ่,AgentBoost ่ด่ดฃๆไพ็ปๆ(่ฎกๅ)ใๆไน
ๅ(่ฎฐๅฟ)ใๆคๆ (ๅฎๅ
จ)ๅๅ้ฆ(้ช่ฏ) โโ ๅ
จ้จๅญๆพๅจ้กน็ฎ้ๅฏ่ฏปใๅฏ diffใๅฏๆๆน็ .agentboost/ ็บฏๆๆฌ็ฎๅฝใ
๐ ๆ ้ๅฎ:ๅ ผๅฎน Claude CodeใCursorใOpenCodeใCodex ๅไปปไฝ MCP ๅฎขๆท็ซฏ
๐ ๆ ้ API keyใๆ ้่็ฝ:ๆจ็ไบค็ปไฝ ็ Agent,ๆฐๆฎไธๅบๆฌๆบ
โฑ๏ธ ไบๅ้่งๆ:ไธๆกๅฝไปคๅๅงๅ,ไธๆกๆฅๅ ฅ,ไธๆกๆๅผ้ขๆฟ
ๆ ธๅฟๅ่ฝ
ๅ่ฝ | ่ฏดๆ | |
๐งญ | ็ปๆๅ่งๅ | ๆ่ช็ถ่ฏญ่จ็ฎๆ ๆๆๆธ ๆฐ็ Spec + ๅฏ้ๆก้ช่ฏ็ๅฐๆญฅ้ชค,ๆฏๆ่ฟญไปฃ็ปๅไธ่ฟๅบฆ่ท่ธช |
๐ง | ไธไธๆไธ่ฎฐๅฟ | ๆไน ๅ้กน็ฎ่ฎฐๅฟ(ๅณ็ญ/ๆถๆ/ๅๅฅฝ/็ป้ช),ๅ ณ้ฎ่ฏๆ็ดขใๆ้่ฆๅบฆๆบ่ฝไฟฎๅชใไธ้ฎไธไธๆๆณจๅ ฅ |
โ | ่ชๅจ้ช่ฏ | ่ชๅจ่ฏๅซๅนถ่ฟ่กๆต่ฏ / ็ฑปๅๆฃๆฅ / lint / ๆๅปบ,็ปๅบๆธ ๆฐ้่ฟ/ๅคฑ่ดฅ,้ฉฑๅจไฟฎๅคๅพช็ฏ |
๐ก๏ธ | ๅฎๅ จไธๆ้ | ๅช่ฏป / ๆ้ๅๅ
ฅ / ๅฎๅ
จ่ฎฟ้ฎ ไธ็บงๆ้ + ๅฑ้ฉๆไฝๆฃๆต( |
๐งฉ | ๅนถ่กๅญ Agent | ๆๅนถๅไธ้็ไปปๅกๆง่กๅจ + ็ปๆ่ๅ |
๐ | ๆฌๅฐ Web ้ขๆฟ | ๅฎๆถๆฅ็้ถๆฎตใ่ฎกๅ่ฟๅบฆใ่ฎฐๅฟใ้ช่ฏ็ปๆไธๆไฝๆฅๅฟ,ๅฏๅจๆต่งๅจ้็ดๆฅ็ผ่พ |
ไธๅ้ไธๆ
npx agentboost init # ๅจ้กน็ฎ้ๅๅงๅ(็ๆ .agentboost/)
npx agentboost gui # ๆๅผๆฌๅฐ้ขๆฟ
npx agentboost adapters # ๆๅฐไฝ ๆ็จ Agent ็ MCP ๆฅๅ
ฅ้
็ฝฎ่ฏฆ็ปไธญๆๆไฝๆๅ(ไธญ่ฑๅ่ฏญ)่ง docs/guide.mdใ
This server cannot be deployed
Maintenance
Related MCP Connectors
Coordinate coding agents through MCP using existing AI plans, saved work, and independent checks.
- WauldoOAuthcom.wauldo
Stateless agentic tools over MCP: concept extraction, long-context, knowledge graph, planning.
The project brain for AI coding agents โ memory, decisions, sprints, knowledge base via MCP.
Shared long-term memory vault for AI agents with 20 MCP tools.
Related MCP Servers
- AlicenseAqualityAmaintenanceProvides AI coding agents with five intelligence layers (dependency graph, git history, documentation, architectural decisions, code health) via nine MCP tools, enabling deep codebase understanding and reducing exploration cost.106,415AGPL 3.0
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to search code by meaning, explore codebase structure, store and query knowledge with temporal facts, and read source code through a set of MCP tools.255 npm7MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents with persistent, multi-layer memory, multi-agent collaboration rooms, and video generation, all accessible via MCP tools.1MIT
- FlicenseBqualityBmaintenanceMCP server that gives AI coding assistants persistent memory, structural code graph analysis, and safe multi-agent coordination, enabling them to answer architectural questions, track decisions across sessions, and coordinate safely in multi-agent workflows.394-