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 SiteCMDget_scan_results- fetch the latest scan results for a projectlist_issues- get open issues ranked by severity and impactbuild_fix_prompt- generate a detailed fix prompt for a specific issue, including affected files and recommended stepsget_score_trend- retrieve score history to understand trajectory over time