HTTP
Modgraph
Query the Bazel module + target graph β modules, deps, and reverse-deps.
bazelmodgraphbuild-graph
Connect your client
Endpointhttps://mcp.fastverk.com/modgraph/mcp
Claude Code adds it straight from the CLI. In Claude Desktop or claude.ai, open Settings → Connectors → Add custom connector and paste the endpoint URL.
Terminal β Claude Codebash
claude mcp add --transport http modgraph https://mcp.fastverk.com/modgraph/mcp
Add to CursorOne-click install for Cursor.
~/.cursor/mcp.jsonjson
{
"mcpServers": {
"modgraph": {
"url": "https://mcp.fastverk.com/modgraph/mcp"
}
}
}
.vscode/mcp.jsonjson
{
"servers": {
"modgraph": {
"type": "http",
"url": "https://mcp.fastverk.com/modgraph/mcp"
}
}
}
Codex CLI speaks stdio, so it bridges to the hosted endpoint with mcp-remote.
~/.codex/config.tomltoml
[mcp_servers.modgraph]
command = "npx"
args = ["-y", "mcp-remote", "https://mcp.fastverk.com/modgraph/mcp"]
Add it under Windsurf → Settings → MCP, or edit the config directly.
~/.codeium/windsurf/mcp_config.jsonjson
{
"mcpServers": {
"modgraph": {
"serverUrl": "https://mcp.fastverk.com/modgraph/mcp"
}
}
}
Add it to Zed's settings.json β it bridges to the hosted endpoint with mcp-remote.
settings.jsonjson
{
"context_servers": {
"modgraph": {
"source": "custom",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.fastverk.com/modgraph/mcp"]
}
}
}
First connect triggers sign-in if the server requires it.
About
The modgraph MCP server: a read-only query surface over the Bazel module and target graph (also public at mcp.tbzl.dev). Requires a service token.