Troubleshooting guide for MCP server configuration (auto-configures by default)
Sets up the MCP repository mapping server for codebase indexing and symbol search.
/plugin marketplace add ChipFlow/claude-context-tools/plugin install context-tools@chipflow-context-toolsNote: The MCP server should auto-configure when you install the plugin and restart Claude Code. This guide is only needed if auto-configuration fails.
First, verify the server isn't already running:
claude mcp list
If you see repo-map: ... - ✓ Connected, it's already working! No action needed.
If the server isn't listed or shows an error, configure it manually:
PLUGIN_VERSION=$(python3 -c "import json; print(json.load(open('${HOME}/.claude/plugins/cache/chipflow-context-tools/context-tools/.claude-plugin/plugin.json'))['version'])")
claude mcp add --scope user --transport stdio repo-map \
--env PROJECT_ROOT='${PWD}' \
-- uv run "${HOME}/.claude/plugins/cache/chipflow-context-tools/context-tools/${PLUGIN_VERSION}/servers/repo-map-server.py"
claude mcp list
You should see: repo-map: ... - ✓ Connected
Restart Claude Code for the MCP server to load.
After restart, the MCP tools will be available in all projects. The server automatically:
.claude/repo-map.dbIf claude mcp list shows an error:
uv is installed: uv --versionclaude plugin listls ~/.claude/plugins/cache/chipflow-context-tools/context-tools/claude mcp remove repo-map