MCP Server
@kaddo/mcp is a read-only Model Context Protocol server
that exposes your project’s curated Kaddo knowledge to any MCP-compatible client (IDE or agent).
Instead of running kaddo context, copying the context pack and pasting an agent prompt by hand,
the agent queries Kaddo directly for context, status, Work Items, graph, hints and prompts.
MCP Client / IDE / Agent ↓ @kaddo/mcp ↓.kaddo/ + knowledge/ + external/ ↓context · explain · understand · graph · work items · capsules · promptsRead-only by design. The server never modifies knowledge, edits files, runs git, calls an LLM or scans your source code. It is a separate, lightweight package — the CLI stays lean.
Install & run
No install needed:
npx @kaddo/mcpThe server speaks MCP over stdio and operates on the project in its working directory (or the
directory in the KADDO_PROJECT_DIR environment variable). It shares its version with
@kaddo/cli.
Configure an MCP client
{ "mcpServers": { "kaddo": { "command": "npx", "args": ["@kaddo/mcp"], "cwd": "/absolute/path/to/your/project" } }}cwd must point to the project that contains .kaddo/, knowledge/ and (optionally) external/.
A ready-to-copy example lives in examples/mcp/.
Resources
| URI | Reads | Purpose |
|---|---|---|
kaddo://context-pack | .kaddo/context-pack.md | curated LLM context |
kaddo://explain | .kaddo/explain.md | what Kaddo knows |
kaddo://understand | .kaddo/understand.md | current phase + next step |
kaddo://graph | .kaddo/graph.json + .mmd | knowledge graph |
kaddo://graph-hints | .kaddo/graph-hints.md + .json | weak/missing relationships |
kaddo://work-items | knowledge/delivery/work-items/ | summarized Work Items |
kaddo://roadmap | knowledge/delivery/roadmap.md | delivery roadmap |
kaddo://capsules | .kaddo/external.yml + external/ | external Knowledge Capsules |
kaddo://agents | knowledge/agents/ | installed agent prompts |
kaddo://skills | knowledge/skills/ | installed skills (empty if none) |
kaddo://skills/<id> | knowledge/skills/<id>/skill.md | one reusable skill |
kaddo://impact-report | .kaddo/reports/ (or in memory) | Knowledge Impact Report |
kaddo://savings-report | .kaddo/reports/ (or in memory) | Estimated Savings Report |
kaddo://drift-report | .kaddo/reports/ (or in memory) | Drift Trend Report |
kaddo://guard-history | .kaddo/history/guard-runs.jsonl | recorded guard runs |
kaddo://open-questions | business/product/codebase/roadmap | classified open questions |
kaddo://roadmap-readiness | (computed) | roadmap readiness summary |
kaddo://tech-decisions | (computed) | decision candidates vs ADRs + suggested ADR filenames |
Tools (read-only)
kaddo_project_status— compact status (state, work items, ownership, graph quality, capsules).kaddo_list_work_items— filter bystatus/type/knowledge_level.kaddo_get_work_item— a Work Item byid(summary + full markdown).kaddo_mark_work_item_ready— assess whether a draft Work Item is ready for implementation. Returns readiness warnings and the CLI commandkaddo ready <id>to transition it (the MCP server cannot modify knowledge files directly).kaddo_list_capsules/kaddo_get_capsule— external Knowledge Capsules.kaddo_list_agents/kaddo_get_agent_prompt— installed agent prompts.kaddo_list_skills/kaddo_get_skill— installed reusable skills.kaddo_list_graph_hints— graph hints, filter byartifact_type/severity/active_only.
Multirepo tools
Tools for agents working with multirepo core/module projects. All are read-only except
kaddo_export_capsule which writes derived capsule files under .kaddo/exports/.
| Tool | Purpose |
|---|---|
kaddo_modules_list | List mapped modules and their Kaddo configuration status (core only). |
kaddo_get_module_context | Get a module’s module-context.md, tech summaries and warnings. |
kaddo_validate_work_item_modules | Validate affected_modules coherence and cross-repo ownership. |
kaddo_get_work_item_context | Composite context for implementing a multirepo Work Item. |
kaddo_suggest_branch_strategy | Suggest branch names, commit messages and checklist. Does NOT execute git. |
kaddo_export_capsule | Export a capsule (project, system, or module scope) under .kaddo/exports/. |
Security: none of these tools executes git, deploys, installs dependencies or calls an LLM.
kaddo_suggest_branch_strategy only suggests branch names and commit messages — the agent
or user must create branches and commit manually.
Derived tools (write only under .kaddo/)
When a derived artifact is missing or stale, these tools regenerate it in place — using the same
core logic as the CLI — so the agent never has to drop to a terminal. They are deterministic (no
LLM, no git) and write only under .kaddo/; they never modify knowledge/, src/,
external/ or .kaddo/external.yml.
| Tool | Writes | CLI equivalent |
|---|---|---|
kaddo_generate_context | .kaddo/context-pack.md + .json | kaddo context |
kaddo_generate_explain | .kaddo/explain.md + .json | kaddo explain |
kaddo_generate_understand | .kaddo/understand.md | kaddo understand |
kaddo_generate_graph | .kaddo/graph.json + .mmd + graph-hints.md + .json | kaddo graph export |
kaddo_generate_capsule_draft | .kaddo/exports/<project>.capsule.md + .json | kaddo capsule export |
kaddo_generate_impact_report | .kaddo/reports/impact-report.md / .json | kaddo report impact |
kaddo_generate_savings_report | .kaddo/reports/savings-report.md / .json | kaddo savings |
kaddo_generate_drift_report | .kaddo/reports/drift-report.md / .json | kaddo drift |
kaddo_generate_questions_report | .kaddo/reports/questions-report.md / .json | kaddo questions |
Each returns { status, files_written, summary, warnings, next_suggested_resources }. Every write
passes through a central allowlist (assertMcpDerivedWritePath); any path outside the derived
.kaddo/ set is rejected with Blocked unsafe MCP derived write path.
kaddo_generate_capsule_draft writes a draft only under .kaddo/exports/ — it never registers
or imports a capsule (use the CLI kaddo capsule add for that).
Typical flow
agent queries MCP → derived resource missing or stale ↓derived tool regenerates it under .kaddo/ ↓agent reads the refreshed resource and continuesFor example: “refresh the context pack and summarize the current phase” →
kaddo_generate_context → kaddo://context-pack → kaddo_project_status. Or: “regenerate the
graph and review hints” → kaddo_generate_graph → kaddo://graph-hints → the graph-agent
prompt.
Whether a tool runs automatically or needs confirmation is decided by your MCP client — the prompts may suggest a derived tool when a resource is missing, but never force it.
Prompts
Every installed agent prompt (knowledge/agents/**) is exposed as an MCP prompt — business-agent,
work-item-agent, implementation-agent, graph-agent, capsule-agent, and so on — with its full
content and recommended inputs. Install them with kaddo add agents.
Resources never auto-generate
Resources are pure reads — they never generate files. If a derived file is missing, the resource returns a clear instruction (and you can then call the matching derived tool):
| Missing | Response |
|---|---|
.kaddo/config.yml | Kaddo project not found. Run kaddo init first. |
.kaddo/context-pack.md | Context pack not found. Run kaddo context in the project first. |
.kaddo/graph.json | Knowledge graph not found. Run kaddo graph export first. |
knowledge/ | Knowledge repository not found. Run kaddo bootstrap first. |
Security
The server only reads .kaddo/, knowledge/ and external/. It never reads src/, .git/,
node_modules/, dist/, build/ or coverage/, blocks path traversal, and never exposes secrets,
tokens, env values, source code or PII.
What it does NOT do
No writes outside .kaddo/, no knowledge/source edits, no Work Item creation, no kaddo scan/
learn/owners suggest/capsule add, no kaddo add, no git, no remote sync, no GitHub API, no
HTTP server, no auth, no RAG, no vector database, no LLM calls. The derived tools regenerate
artifacts only under .kaddo/; everything else is read-only.
See also
- Commands Overview — the CLI that produces what MCP reads.
- Knowledge Graph Export and Knowledge Capsules.
- Agent Prompt Packs — exposed as MCP prompts.