HomeFeaturesPricingDocumentationContactDOWNLOAD
← Back to docs

Cline

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

Cline is a VS Code extension with native MCP support. Connect it to SiteCMD so Cline can pull scan results and generate fix prompts as part of its agentic workflow.

SiteCMD’s in-app Integrations connect button currently writes config for Cursor, Claude Code, and Codex. For Cline, add the server by hand as below.

Configuration

The easiest path is Cline’s own UI: open the MCP Servers panel (the plug icon), choose Configure MCP Servers, and add the sitecmd entry. That opens Cline’s settings file, where you can also edit it directly:

  • macOS / Linux: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  • Windows: %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
{
  "mcpServers": {
    "sitecmd": {
      "command": "node",
      "args": [
        "--disable-warning=ExperimentalWarning",
        "/Applications/SiteCMD.app/Contents/Resources/sitecmd-mcp/sitecmd-mcp.mjs"
      ]
    }
  }
}

That script path is the macOS location; on Windows and Linux the script lives in the resources/sitecmd-mcp/ folder next to the installed SiteCMD binary. If you run VS Code Insiders, VSCodium, or Cursor, the settings folder is named for that build (Code - Insiders, VSCodium, Cursor) instead of Code.

What you get

Once connected, Cline can call these tools as part of its task execution:

  • get_projects - list all projects tracked in SiteCMD
  • get_scan_score - fetch the latest score and category breakdown
  • get_issues - list failing issues ranked by severity and impact
  • get_fix_prompts - generate fix prompts for selected issues
  • get_scan_history - retrieve score history over time
  • get_dismissed_issues - review dismissed or not-applicable issues
  • compare_scans - compare two scans for fixed, new, and still-open issues
  • request_scan - get instructions for running a scan and comparing results