Semantic code intelligence MCP server - build knowledge graphs of codebases to enhance AI-assisted code exploration.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"symgraph": {
"command": "cargo",
"args": [
"run",
"--",
"symgraph"
]
}
}
}
Run in terminal:
claude mcp add symgraph cargo run -- symgraph
Add to .cursor/mcp.json:
{
"mcpServers": {
"symgraph": {
"command": "cargo",
"args": [
"run",
"--",
"symgraph"
]
}
}
}