Code intelligence MCP server: call graphs, type inference, and symbol search for Python/Go.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx codepathfinder
MCP client config
{
"mcpServers": {
"code-pathfinder": {
"command": "uvx",
"args": [
"codepathfinder"
]
}
}
}Run
docker run -i --rm docker.io/shivasurya/code-pathfinder:v2.1.1
MCP client config
{
"mcpServers": {
"code-pathfinder": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/shivasurya/code-pathfinder:v2.1.1"
]
}
}
}