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.
Theme
Colour
Saved on this device only, and only if you accepted preference storage.
Theme
Colour
Free MCP server, no sign in
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.
What MCP is
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.
Your assistant searches the help centre itself instead of guessing, so the steps match how the platform actually works today.
Each result carries its link on the help centre, down to the heading, so you can check the source in one click.
When an article changes, the server picks it up on its own. There is nothing to update on your side.
Setup
Pick your tool. Most take under a minute.
Add it once on the web and it follows you into the Claude desktop and mobile apps.
https://connect.docs.ghlcustomercare.com/mcp as the server URL. Leave the OAuth fields empty, there is no sign in. 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.
The Connectors screen above is quickest. If you would rather manage a config file, bridge the server with mcp-remote.
claude_desktop_config.json. It needs Node.js 18 or newer. {
"mcpServers": {
"ghl-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://connect.docs.ghlcustomercare.com/mcp"
]
}
}
} One line in your terminal and every session can check the help centre while it works.
--scope user to use it in every project, or --scope project to share it with your team. claude mcp list, or type /mcp inside a session. claude mcp add --transport http ghl-docs https://connect.docs.ghlcustomercare.com/mcp ChatGPT connects to MCP servers through developer mode on Plus, Pro, Business, Enterprise and Edu plans, on the web.
https://connect.docs.ghlcustomercare.com/mcp. Set Authentication to No authentication, tick the trust box and click Create. 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.
Building your own assistant? Give it the help centre as a hosted MCP tool. OpenAI calls the server for you.
mcp to a Responses API call. require_approval: "never" is safe, because every tool only reads. HostedMCPTool. 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) 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) One click, or three lines of config.
~/.cursor/mcp.json, or .cursor/mcp.json for one project. {
"mcpServers": {
"ghl-docs": {
"url": "https://connect.docs.ghlcustomercare.com/mcp"
}
}
} Copilot Chat in agent mode can call the help centre directly, in VS Code 1.102 or newer.
.vscode/mcp.json. {
"servers": {
"ghl-docs": {
"type": "http",
"url": "https://connect.docs.ghlcustomercare.com/mcp"
}
}
} Cascade reads remote servers from its MCP config.
serverUrl for remote servers. {
"mcpServers": {
"ghl-docs": {
"serverUrl": "https://connect.docs.ghlcustomercare.com/mcp"
}
}
} Add it from the terminal, or in settings.json.
~/.gemini/settings.json with httpUrl. gemini and type /mcp to see the tools. gemini mcp add --transport http ghl-docs https://connect.docs.ghlcustomercare.com/mcp Any client that speaks MCP over Streamable HTTP only needs the URL.
https://connect.docs.ghlcustomercare.com/mcp. Authentication: none. npx -y mcp-remote https://connect.docs.ghlcustomercare.com/mcp. Reference
Your assistant picks the right tool on its own. Every one only reads, and every result links back to the help centre.
| Tool | What 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
Once it is connected, just ask. Mentioning the docs nudges your assistant to use them.
For crawlers and pipelines
The same content is published as static files, for crawlers, retrieval pipelines or pasting into a chat.
An index of every article with a one line summary, in the llmstxt.org format.
Every article in a category as one Markdown file, linked from llms.txt.
Add .md to any help centre article address for a clean copy with the screenshots described.
Full setup guide on the help centre: docs.ghlcustomercare.com/mcp
Questions
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.
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.
support@ghlcustomercare.com Monday to Friday, 9am to 6pm
Reading settings