Home Features For Vibe Coders For Developers Pricing Documentation Services Contact
← Back to docs
Documentation

Zed Integration

Set up SiteCMD with Zed to fix issues with full scan context.

Zed has native MCP support built into its assistant panel. Add the SiteCMD server to your Zed settings and it will be available in any AI conversation.

Configuration

Open Zed settings (Cmd+,) and add the following to your settings.json:

{
  "context_servers": {
    "sitecmd": {
      "command": {
        "path": "node",
        "args": ["/path/to/sitecmd/mcp-server/index.js"]
      }
    }
  }
}

Replace /path/to/sitecmd/mcp-server/index.js with the actual path. On macOS the MCP server ships inside the app bundle at:

~/Applications/SiteCMD.app/Contents/Resources/mcp-server/index.js

Zed picks up the change without a restart.

What you get

Once connected, Zed’s AI assistant can call these tools against your SiteCMD data:

  • list_projects - list all projects tracked in SiteCMD
  • get_scan_results - fetch the latest scan results for a project
  • list_issues - get open issues ranked by severity and impact
  • build_fix_prompt - generate a detailed fix prompt for a specific issue, including affected files and recommended steps
  • get_score_trend - retrieve score history to understand trajectory over time