Customer Care GoHighLevel support desk
support@ghlcustomercare.com Get support

Free MCP server, no sign in

Ask your AI, get our answers

Point Claude, ChatGPT, Cursor or Copilot at our MCP server and it can search and read all 2,890 help centre articles, then answer with a link to the exact section.

MCP server address

https://connect.docs.ghlcustomercare.com/mcp
Set up a client
Transport
Streamable HTTP
Sign in
None needed
Access
Read only, public docs
Covers
2,890 articles

What MCP is

A direct line from your assistant to the help centre

The Model Context Protocol is an open standard that lets AI assistants use outside tools. Ours gives them the whole help centre to look things up in, so answers come from the source rather than old training data.

Answers from the real guides

Your assistant searches the help centre itself instead of guessing, so the steps match how the platform actually works today.

Every answer linked

Each result carries its link on the help centre, down to the heading, so you can check the source in one click.

Nothing to maintain

When an article changes, the server picks it up on its own. There is nothing to update on your side.

Setup

Connect your client

Pick your tool. Most take under a minute.

Claude

Easiest

Add it once on the web and it follows you into the Claude desktop and mobile apps.

  1. Open Claude and go to Settings, then Connectors.
  2. Click Add custom connector.
  3. Call it GHL Customer Care Docs and paste https://connect.docs.ghlcustomercare.com/mcp as the server URL. Leave the OAuth fields empty, there is no sign in.
  4. Click Add, then switch the connector on from the tools menu in any chat.

On Team and Enterprise plans an Owner adds it once under Organization settings, then everyone can switch it on. The Free plan allows one custom connector.

Claude Desktop (config file)

The Connectors screen above is quickest. If you would rather manage a config file, bridge the server with mcp-remote.

  1. Open Settings, then Developer, then Edit Config.
  2. Add the block below to claude_desktop_config.json. It needs Node.js 18 or newer.
  3. Quit Claude Desktop completely and reopen it. The tools appear under the tools icon.
claude_desktop_config.json
{
  "mcpServers": {
    "ghl-docs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://connect.docs.ghlcustomercare.com/mcp"
      ]
    }
  }
}

Claude Code

One command

One line in your terminal and every session can check the help centre while it works.

  1. Run the command below.
  2. Add --scope user to use it in every project, or --scope project to share it with your team.
  3. Check it with claude mcp list, or type /mcp inside a session.
Terminal
claude mcp add --transport http ghl-docs https://connect.docs.ghlcustomercare.com/mcp

ChatGPT

ChatGPT connects to MCP servers through developer mode on Plus, Pro, Business, Enterprise and Edu plans, on the web.

  1. Go to Settings, then Apps and Connectors, then Advanced settings and turn on Developer mode.
  2. Back in Apps and Connectors, click Create.
  3. Enter the name, a short description and https://connect.docs.ghlcustomercare.com/mcp. Set Authentication to No authentication, tick the trust box and click Create.
  4. In a new chat, open the + menu, pick Developer mode and turn the connector on.

The server also offers the search and fetch tools that ChatGPT deep research expects. On Business and Enterprise, an admin may need to allow custom connectors first.

OpenAI API and Agents SDK

Building your own assistant? Give it the help centre as a hosted MCP tool. OpenAI calls the server for you.

  1. Add a tool of type mcp to a Responses API call.
  2. require_approval: "never" is safe, because every tool only reads.
  3. In the Agents SDK, pass the same settings to HostedMCPTool.
Responses API (Python)
from openai import OpenAI

client = OpenAI()
response = client.responses.create(
    model="gpt-5",
    tools=[{
        "type": "mcp",
        "server_label": "ghl_docs",
        "server_url": "https://connect.docs.ghlcustomercare.com/mcp",
        "require_approval": "never",
    }],
    input="How do I connect a custom domain to a funnel?",
)
print(response.output_text)
Agents SDK (Python)
from agents import Agent, HostedMCPTool, Runner

agent = Agent(
    name="Support assistant",
    instructions="Answer from the help centre and cite the links.",
    tools=[HostedMCPTool(tool_config={
        "type": "mcp",
        "server_label": "ghl_docs",
        "server_url": "https://connect.docs.ghlcustomercare.com/mcp",
        "require_approval": "never",
    })],
)
print(Runner.run_sync(agent, "How do I register for A2P 10DLC?").final_output)

Cursor

One click, or three lines of config.

  1. Click Add to Cursor below, or open Cursor Settings, then Tools and MCP, then New MCP Server.
  2. By hand, add the block below to ~/.cursor/mcp.json, or .cursor/mcp.json for one project.
  3. A green dot means it is connected. Ask in Agent chat.
mcp.json
{
  "mcpServers": {
    "ghl-docs": {
      "url": "https://connect.docs.ghlcustomercare.com/mcp"
    }
  }
}
Add to Cursor

VS Code and GitHub Copilot

Copilot Chat in agent mode can call the help centre directly, in VS Code 1.102 or newer.

  1. Click Install in VS Code below, or run MCP: Add Server from the Command Palette, choose HTTP and paste the URL.
  2. To share it with your team, commit the block below as .vscode/mcp.json.
  3. Open Copilot Chat in Agent mode and check the tools picker.
.vscode/mcp.json
{
  "servers": {
    "ghl-docs": {
      "type": "http",
      "url": "https://connect.docs.ghlcustomercare.com/mcp"
    }
  }
}
Install in VS Code

Windsurf

Cascade reads remote servers from its MCP config.

  1. Open Windsurf Settings, then Cascade, then MCP Servers and choose View raw config.
  2. Add the block below. Windsurf uses serverUrl for remote servers.
  3. Save, then press Refresh in the MCP panel.
mcp_config.json
{
  "mcpServers": {
    "ghl-docs": {
      "serverUrl": "https://connect.docs.ghlcustomercare.com/mcp"
    }
  }
}

Gemini CLI

Add it from the terminal, or in settings.json.

  1. Run the command below, or add the server to ~/.gemini/settings.json with httpUrl.
  2. Start gemini and type /mcp to see the tools.
Terminal
gemini mcp add --transport http ghl-docs https://connect.docs.ghlcustomercare.com/mcp

Anything else

Any client that speaks MCP over Streamable HTTP only needs the URL.

  1. Transport: Streamable HTTP. URL: https://connect.docs.ghlcustomercare.com/mcp. Authentication: none.
  2. If a client only runs local servers, bridge it with npx -y mcp-remote https://connect.docs.ghlcustomercare.com/mcp.

Reference

What your assistant can do

Your assistant picks the right tool on its own. Every one only reads, and every result links back to the help centre.

ToolWhat it does
find_answer Answers a question with the best matching sections from across the help centre, each linked to its heading.
search_docs Ranked search across all 2,890 articles, with snippets and paging.
get_article A full article as Markdown, screenshots described in words, plus its sections and FAQs.
list_categories Every category and folder with article counts.
get_category One category with every folder and article in it.
list_articles Paged lists by category or folder, in site order, newest first or A to Z.
get_related_articles Articles on the same topic, for next steps.
search and fetch The pair ChatGPT deep research and connectors look for.

Also included: every article as a readable resource, and ready made prompts for troubleshooting, how-to walkthroughs and explaining a feature.

Try it

Things to ask

Once it is connected, just ask. Mentioning the docs nudges your assistant to use them.

  • Using the GHL Customer Care docs, walk me through setting up a round robin calendar.
  • My texts are failing with error 30007. What does it mean and how do I fix it?
  • What do I need ready before I register for A2P 10DLC? Link the articles.
  • Find every article about connecting a custom domain and sum up the steps.

Questions

Before you connect

No. It is free and public, like the help centre. There is nothing to sign up for and no key to paste.

No. It only reads the public help articles, and every tool is read only. It cannot see or change anything in your account, your contacts or your data.

The articles are public, so the server does not need one. If a client asks about OAuth, leave those fields empty or choose No authentication.

The server reads the same content as the help centre and reloads whenever it changes, so answers match what is published.

The server only sees what your assistant looks up, such as a search phrase, and does not keep it or tie it to you. The conversation itself stays with your AI provider.

Each connection gets 120 requests a minute, far more than anyone chatting will use. If you ever hit it, wait a minute.

That the URL is exactly https://connect.docs.ghlcustomercare.com/mcp, the transport is Streamable HTTP rather than SSE, and authentication is off. Restart the client after editing a config file. Still stuck? Email the desk.

No. It is for how-to questions the help centre already answers. Anything about your own account, a build or something that has stopped working still comes to the desk, where a person picks it up.

Need a person instead?

The assistant covers how-to questions. Anything about your own account, a build or something that stopped working, email the desk and a person picks it up.

Email the desk

support@ghlcustomercare.com Monday to Friday, 9am to 6pm