Skip to content
VS Code

ghl mcp server for VS Code

io.github.northrosetech/ghl-mcp-server

GoHighLevel CRM for AI agents. 60+ tools for contacts, messaging, calendars, and payments.

client:VS Code transport:stdio runtime:npm

Install ghl mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ghl-api-key",
      "description": "GHL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ghl-location-id",
      "description": "GHL_LOCATION_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ghl-base-url",
      "description": "GHL_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ghl-api-version",
      "description": "GHL_API_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "transport",
      "description": "TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "ghl-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@northrosetech/ghl-mcp-server"
      ],
      "env": {
        "GHL_API_KEY": "${input:ghl-api-key}",
        "GHL_LOCATION_ID": "${input:ghl-location-id}",
        "GHL_BASE_URL": "${input:ghl-base-url}",
        "GHL_API_VERSION": "${input:ghl-api-version}",
        "TRANSPORT": "${input:transport}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ghl mcp server in other clients