| title | Integrations |
|---|---|
| description | Supported agents, and manual MCP setup. |
The interactive installer auto-detects and configures each supported agent — wiring up the MCP server and writing its instructions file.
- Claude Code
- Cursor
- Codex CLI
- opencode
- Hermes Agent
- Gemini CLI
- Antigravity IDE
- Kiro
- Factory Droid
Run npx @colbymchenry/codegraph and pick your agent(s); see Installation for the non-interactive flags.
If you'd rather wire it up yourself, install globally:
npm install -g @colbymchenry/codegraphAdd the MCP server to ~/.claude.json:
{
"mcpServers": {
"codegraph": {
"type": "stdio",
"command": "codegraph",
"args": ["serve", "--mcp"]
}
}
}Optionally auto-allow the read-only tools in ~/.claude/settings.json:
{
"permissions": {
"allow": [
"mcp__codegraph__codegraph_search",
"mcp__codegraph__codegraph_context",
"mcp__codegraph__codegraph_callers",
"mcp__codegraph__codegraph_callees",
"mcp__codegraph__codegraph_impact",
"mcp__codegraph__codegraph_node",
"mcp__codegraph__codegraph_status",
"mcp__codegraph__codegraph_files"
]
}
}:::tip
Cursor launches MCP subprocesses with the wrong working directory. The installer handles this for you by injecting a --path argument; if you wire Cursor up by hand, pass the project path explicitly.
:::