MCP server for code intelligence - maps source code into a knowledge graph so AI tools understand architecture, not just files. Built in Rust.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"codesynapse": {
"command": "cargo",
"args": [
"run",
"--",
"codesynapse"
]
}
}
}
Run in terminal:
claude mcp add codesynapse cargo run -- codesynapse
Add to .cursor/mcp.json:
{
"mcpServers": {
"codesynapse": {
"command": "cargo",
"args": [
"run",
"--",
"codesynapse"
]
}
}
}