Skip to content

MCP Server Won't Start

  • Your MCP client (Claude, Cursor, etc.) reports it cannot connect to Forge.
  • 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.
  • forge serve starts from the command line but the client still cannot see the tools.

CauseIndicator
Wrong path to the forge binary in .mcp.json”spawn failed” or “command not found”
forge binary not in the shell’s PATHWorks from terminal but not from client
Repository has not been indexed yetTools call but return “index not found”
.mcp.json points to the wrong repository pathTools return results for the wrong repo
Community Mode restrictionMCP server refused without license (forge serve exits with an error)

Terminal window
which forge
forge --version

Expected output:

/usr/local/bin/forge
forge 1.3.0

If which forge returns nothing, see Client Can’t Find forge.

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 Forge entry looks like:

{
"mcpServers": {
"forge": {
"command": "forge",
"args": ["serve", "/absolute/path/to/your/repo"],
"env": {}
}
}
}

Verify:

  • "command" is "forge" or an absolute path to the binary (e.g., "/usr/local/bin/forge").
  • "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 .git directory.

The MCP server requires an existing index. Run:

Terminal window
forge status --repo /absolute/path/to/your/repo

If you see “repository not found”, index it first:

Terminal window
forge index /absolute/path/to/your/repo --with-search

Then restart your MCP client.

Run forge serve from the command line to see if it starts cleanly:

Terminal window
forge serve /absolute/path/to/your/repo

Expected output:

forge MCP server started for /absolute/path/to/your/repo
Listening on stdin/stdout (JSON-RPC 2.0)

If you see an error here, the problem is in Forge itself (not the client config). Common errors:

  • index not found — run forge index first
  • license required — Community Mode: MCP server requires a license (see below)

Starting with v1.3.0, forge serve in Community Mode (no license) refuses to start the MCP server. If you see this error, you have two options:

  1. Activate a license: Run forge activate <key> or start a trial at https://forge.ironpinelabs.com/pricing.
  2. Use CLI commands directly: Community Mode supports forge search, forge health, and forge status from the command line without the MCP server.

Some MCP clients launch servers from a different working directory than your terminal. Use absolute paths in .mcp.json:

{
"mcpServers": {
"forge": {
"command": "/usr/local/bin/forge",
"args": ["serve", "/Users/yourname/repos/my-project"]
}
}
}

Replace /usr/local/bin/forge with the output of which forge.

After any change to .mcp.json or after running forge index, restart your MCP client completely. Most clients do not detect configuration changes dynamically.


Contact support at [email protected] if:

  • forge 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:

Terminal window
forge --version
forge status --repo /path/to/repo
forge license