MCP Server Won't Start
Symptoms
Section titled “Symptoms”- Your MCP client (Claude, Cursor, etc.) reports it cannot connect to Canopy.
- Error messages such as “failed to start MCP server”, “spawn failed”, or “connection refused”.
- The client connects but all tool calls return empty results or errors.
canopy servestarts from the command line but the client still cannot see the tools.
Likely Causes
Section titled “Likely Causes”| Cause | Indicator |
|---|---|
Wrong path to the canopy binary in .mcp.json | ”spawn failed” or “command not found” |
canopy binary not in the shell’s PATH | Works from terminal but not from client |
| Repository has not been indexed yet | Tools call but return “index not found” |
.mcp.json points to the wrong repository path | Tools return results for the wrong repo |
| Community Mode restriction | MCP server refused without license (canopy serve exits with an error) |
Step-by-Step Fix
Section titled “Step-by-Step Fix”Step 1: Confirm canopy is in your PATH
Section titled “Step 1: Confirm canopy is in your PATH”which canopycanopy --versionExpected output:
/usr/local/bin/canopycanopy 1.3.0If which canopy returns nothing, see Client Can’t Find canopy.
Step 2: Check your .mcp.json configuration
Section titled “Step 2: Check your .mcp.json configuration”Your MCP client reads server definitions from .mcp.json (or an equivalent config file). A typical Canopy entry looks like:
{ "mcpServers": { "canopy": { "command": "canopy", "args": ["serve", "/absolute/path/to/your/repo"], "env": {} } }}Verify:
"command"is"canopy"or an absolute path to the binary (e.g.,"/usr/local/bin/canopy")."args"includes the absolute path to the repository you want to analyze. Relative paths may not resolve correctly depending on how the client launches the server.- The repository path exists and contains a
.gitdirectory.
Step 3: Verify the repository is indexed
Section titled “Step 3: Verify the repository is indexed”The MCP server requires an existing index. Run:
canopy status --repo /absolute/path/to/your/repoIf you see “repository not found”, index it first:
canopy index /absolute/path/to/your/repo --with-searchThen restart your MCP client.
Step 4: Test the server manually
Section titled “Step 4: Test the server manually”Run canopy serve from the command line to see if it starts cleanly:
canopy serve /absolute/path/to/your/repoExpected output:
canopy MCP server started for /absolute/path/to/your/repoListening on stdin/stdout (JSON-RPC 2.0)If you see an error here, the problem is in Canopy itself (not the client config). Common errors:
index not found— runcanopy indexfirstlicense required— Community Mode: MCP server requires a license (see below)
Step 5: Community Mode restriction
Section titled “Step 5: Community Mode restriction”Starting with v1.3.0, canopy serve in Community Mode (no license) refuses to start the MCP server. If you see this error, you have two options:
- Activate a license: Run
canopy activate <key>or start a trial athttps://canopy.ironpinelabs.com/pricing. - Use CLI commands directly: Community Mode supports
canopy search,canopy health, andcanopy statusfrom the command line without the MCP server.
Step 6: Use absolute paths
Section titled “Step 6: Use absolute paths”Some MCP clients launch servers from a different working directory than your terminal. Use absolute paths in .mcp.json:
{ "mcpServers": { "canopy": { "command": "/usr/local/bin/canopy", "args": ["serve", "/Users/yourname/repos/my-project"] } }}Replace /usr/local/bin/canopy with the output of which canopy.
Step 7: Restart the MCP client
Section titled “Step 7: Restart the MCP client”After any change to .mcp.json or after running canopy index, restart your MCP client completely. Most clients do not detect configuration changes dynamically.
When to Escalate
Section titled “When to Escalate”Contact support at [email protected] if:
canopy serve <path>starts cleanly from the terminal but the client still cannot connect.- Tool calls return unexpected errors after the server is confirmed running.
Include the output of:
canopy --versioncanopy status --repo /path/to/repocanopy license