Skip to main content
HoopAI documentation is designed to be AI-friendly. AI assistants can search, read, and reference our entire help center using standard protocols — no scraping or workarounds needed.
This page is about connecting AI tools to HoopAI documentation. To connect AI tools to your HoopAI account data (contacts, conversations, calendars, etc.), see the Platform MCP Server.

How it works

HoopAI exposes documentation to AI tools through two channels:

llms.txt

A structured text file that gives AI models a complete index of every page in the help center — titles, descriptions, and URLs. Most AI tools discover this automatically.URL: help.hoopai.com/llms.txt

Docs MCP Server

A hosted MCP server that lets AI tools search across the entire knowledge base in real time. Returns contextual content with direct links.URL: help.hoopai.com/mcp

llms.txt

The llms.txt standard is a simple text file at the root of a website that helps AI models understand the site’s content. Think of it as robots.txt but for LLMs — instead of telling crawlers where not to go, it tells AI tools what content is available and how it’s organized. HoopAI publishes two files:
FileURLWhat it contains
llms.txthelp.hoopai.com/llms.txtPage index — titles, descriptions, and links for every page
llms-full.txthelp.hoopai.com/llms-full.txtFull content — the complete text of every page in the help center
These files are auto-generated and updated on every deploy, so they always reflect the latest documentation.

Who uses llms.txt?

AI tools that support llms.txt will automatically discover and use it when they encounter HoopAI documentation URLs:
  • Perplexity — Automatically reads llms.txt when answering questions about HoopAI
  • ChatGPT — Can reference it via web browsing when you share a HoopAI docs link
  • Claude — Uses it when searching for HoopAI documentation
  • Cursor / Windsurf — Can use it as context when you reference @docs or paste a URL
No configuration needed — just ask your AI tool about HoopAI and it can find the docs.

Docs MCP Server

The Docs MCP Server is a hosted Model Context Protocol endpoint that lets any MCP-compatible AI client search the HoopAI Help Center programmatically. Endpoint: https://help.hoopai.com/mcp Transport: HTTP Streamable Authentication: None required (public docs)

Available tool

ToolDescription
SearchHoopAiHelpCenterSearch across the HoopAI Help Center knowledge base to find relevant information, code examples, API references, and guides.

Connect AI tools to the Docs MCP Server

Open your Claude Desktop config file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
Add the HoopAI docs server:
{
  "mcpServers": {
    "hoopai-docs": {
      "url": "https://help.hoopai.com/mcp"
    }
  }
}
Restart Claude Desktop. You can now ask Claude to search HoopAI docs directly.

Platform MCP vs Docs MCP

HoopAI offers two separate MCP servers for different purposes:
Docs MCP ServerPlatform MCP Server
PurposeSearch HoopAI documentationAccess your HoopAI account data
Endpointhelp.hoopai.com/mcpservices.leadconnectorhq.com/mcp/
AuthNone (public)Private Integration Token
Tools1 (search docs)36 (contacts, conversations, calendars, etc.)
Use case”How do I set up a workflow?""Show me my last 10 contacts”
Setup guideThis pagePlatform MCP Quickstart
You can use both servers together — ask an AI assistant to look up how to do something in the docs, then do it via the platform MCP.

On-page AI features

Every page in the HoopAI Help Center includes built-in AI features:
  • Copy to ChatGPT — Select any text and copy it directly to ChatGPT with context
  • Copy to Claude — Select any text and copy it directly to Claude with context
  • Ask AI — Use the search bar to ask natural language questions about the docs
These features are available on every page without any setup.
Last modified on March 7, 2026