GoHighLevel MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GoHighLevel MCP ServerFind leads who filled out the form this week but haven't been contacted yet"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GoHighLevel MCP Server
Model Context Protocol server for GoHighLevel. It exposes GHL API operations as MCP tools over stdio, Streamable HTTP, and legacy SSE.
Current API Coverage
Official GHL endpoints parsed:
576Official endpoint coverage:
576 / 576Generated official endpoint tools:
238MCP tools in registry:
834(802raw API tools plus32curated agent workflow tools)Local-only endpoint references tracked for review:
253Daily GitHub Actions refresh opens a PR when the official GHL API docs change.
Coverage artifacts:
docs/GHL-API-COVERAGE-REPORT.mddocs/GHL-LOCAL-ENDPOINT-CLASSIFICATION.mddocs/ghl-api-coverage.jsondocs/API-DASHBOARD.mddocs/tool-inventory.json
Companion Tooling
The MCP server stays focused on MCP transports and GHL tool execution. Companion tooling lives beside it for setup, inspection, updates, and examples.
npm run tools:doctor # Check build output, env, and API coverage health
npm run tools:list # Browse the registered MCP tool inventory
npm run tools:report # Regenerate the API dashboard and tool inventory JSON
npm run tools:explorer # Print the local static tool explorer path
npm run tools:configure # Print a Claude-compatible MCP config snippet
npm run tools:update-api # Refresh official GHL API coverage and generated toolsDirect CLI usage:
npx ghl-mcp doctor
npx ghl-mcp list-tools --search ads
npx ghl-mcp configure claude
npx ghl-mcp test-tool search_contacts '{"locationId":"your_location_id","pageLimit":1}'See docs/TOOLING.md for the full tooling map.
Agent Tool Profiles
By default, the server exposes the full tool surface: raw endpoint tools plus the curated CRM workflow layer. Agents that work better with fewer, higher-level actions can use:
GHL_TOOL_PROFILE=curated npm run start:stdioProfiles:
full- default; exposes all834tools.curated- exposes only the32agent workspace tools, such ascrm_prepare_lead_intake,crm_prepare_conversation_reply,crm_prepare_appointment_booking, andcrm_location_health_check.raw- exposes only the original802endpoint-level tools.
The curated tools return structured confirmation queues for writes. They stage the exact raw tool calls an agent should execute after the user confirms, instead of making outbound messages, billing, workflow enrollment, stage moves, or snapshot pushes feel like one ambiguous API call.
Recipes And Agent Starters
The examples/ directory turns the tool surface into practical MCP workflows:
examples/recipes/— structured JSON recipes for lead intake, appointment booking, pipeline follow-up, ads reporting, review requests, location health checks, and more.examples/agents/— starter assistant prompts for CRM, appointment setting, pipeline management, ads reporting, and agency operations.docs/tool-explorer.html— static browser explorer fordocs/tool-inventory.json.
Recipes use real MCP tool names and include confirmation points for actions like outbound messages, appointment creation, workflow enrollment, deletes, and snapshot pushes.
MCP Apps
mcp-apps/ contains companion MCP Apps for hosts that support interactive MCP resources. They run as a separate app server so the core MCP API server stays lean.
MCP Apps require Node 20+ because they use @modelcontextprotocol/ext-apps.
The apps are wired to the curated CRM workflow tools first, so buttons like "Prepare lead intake," "Prepare booking," and "Prepare snapshot rollout" produce confirmation-gated action plans for ChatGPT, Claude, or another MCP host.
npm run build
npm run apps:install
npm run apps:build
npm run apps:start:stdioIncluded app tools:
show_ghl_tool_explorer_appshow_ghl_contact_workspace_appshow_ghl_lead_intake_appshow_ghl_conversation_inbox_appshow_ghl_pipeline_board_appshow_ghl_appointment_desk_appshow_ghl_automation_launcher_appshow_ghl_reputation_center_appshow_ghl_ads_dashboard_appshow_ghl_billing_commerce_appshow_ghl_agency_admin_app
See mcp-apps/README.md for host config and HTTP mode.
For a normal browser preview:
npm run apps:start:httpOpen http://localhost:3001/preview. The tool explorer links to every CRM workspace preview.
Transports
npm run start:stdio— stdio MCP server for desktop MCP clients.npm run start:http— Streamable HTTP server at/mcp.npm run start:legacy— legacy SSE server at/sse.
The HTTP server also exposes:
GET /healthGET /capabilitiesGET /toolsPOST /executePOST /tools/call
Setup
npm install
cp .env.example .envSet:
GHL_API_KEY=your_private_integration_api_key
GHL_LOCATION_ID=your_location_id
GHL_BASE_URL=https://services.leadconnectorhq.com
GHL_API_VERSION=2021-07-28Build and run:
npm run build
npm run start:stdioFor HTTP:
npm run start:httpMCP Client Config
Example stdio config:
{
"mcpServers": {
"ghl": {
"command": "node",
"args": ["/absolute/path/to/Go-High-Level-MCP-2026-Complete/dist/server.js"],
"env": {
"GHL_API_KEY": "your_private_integration_api_key",
"GHL_LOCATION_ID": "your_location_id",
"GHL_BASE_URL": "https://services.leadconnectorhq.com",
"GHL_API_VERSION": "2021-07-28"
}
}
}
}Scripts
npm run build # Compile server files to dist/
npm run lint # Fast TypeScript syntax/transpile check
npm test # Jest tests
npm run scan:ghl-api # Refresh official GHL API coverage and generated tools
npm run ci:ghl-api-drift # Fail if generated API artifacts are stale
npm run smoke:ghl-live # Optional read-only live checks when GHL env vars are set
npm run tools:doctor # Check local MCP setup
npm run tools:report # Generate API dashboard and tool inventory
npm run tools:explorer # Show the static tool explorer file pathDaily API Refresh
.github/workflows/ghl-api-drift.yml runs daily. It:
Pulls the latest official
GoHighLevel/highlevel-api-docssnapshot.Regenerates coverage docs and generated official endpoint tools.
Opens a PR if any generated artifacts changed.
PRs and pushes also run drift checks so stale generated files do not silently land.
Project Layout
src/
clients/ GHL API clients
tools/ MCP tool modules
types/ shared TypeScript types
main.ts Streamable HTTP MCP server
server.ts stdio MCP server
http-server.ts legacy SSE MCP server
scripts/ API scanner, generator, build, smoke test
docs/ generated API coverage reports
examples/ MCP recipes and starter agent templates
mcp-apps/ companion MCP Apps server and bundled UI
tests/ Jest testsNotes
src/tools/official-spec-tools.tsandsrc/tools/official-spec-endpoints.jsonare generated. Do not edit them by hand.Run
npm run scan:ghl-apiafter GHL API docs change.The live smoke test is opt-in and only runs when
GHL_API_KEYandGHL_LOCATION_IDare present.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BusyBee3333/Go-High-Level-MCP-2026-Complete'
If you have feedback or need assistance with the MCP directory API, please join our Discord server