Skip to content

Latest commit

 

History

History
65 lines (53 loc) · 1.51 KB

File metadata and controls

65 lines (53 loc) · 1.51 KB
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.

Supported agents

  • 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.

Manual setup

If you'd rather wire it up yourself, install globally:

npm install -g @colbymchenry/codegraph

Add 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. :::