Kivgraph MCP Server for Claude Code
Kivgraph gives Claude Code a local semantic code graph for repository navigation. Claude can ask for symbols, references, callers, dependencies and change impact through MCP instead of scanning the repository from scratch.
Install the integration
Section titled “Install the integration”After installing the Kivgraph binary, register it in the user configuration:
kivgraph mcp install --scope user --target claude-codekivgraph skill install --scope user --target claude-codeThe user-scope MCP entry is written to ~/.claude.json. For a project-only setup:
kivgraph mcp install --scope project --target claude-codekivgraph skill install --scope project --target claude-codeThe project-scope entry is written to .mcp.json in the current repository.
Index before asking questions
Section titled “Index before asking questions”Register and publish the graph before starting a structural query:
kivgraph init \ --repository project=/absolute/path/to/project \ --languages go,typescript,rustkivgraph index --fullThen ask Claude Code questions such as:
Who calls this symbol, including consumers in another repository?What breaks if I change this interface?See code intelligence and repository relationships for the query model.