The docs MCP server gives any MCP-capable AI assistant, for example Claude Code, Claude.ai, ChatGPT, Cursor, or Codex, read-only access to the product documentation and the REST API reference. It is public and unauthenticated: add the URL below and start querying immediately, with no account, no API key, and no login flow.
The server reads two committed, static sources: the documentation guides published on this site and the REST API’s OpenAPI document. It holds no database connection, no customer data, and no PII. Every query returns the same public content regardless of who asks.
Connect your agent
Section titled “Connect your agent”Add the server URL to your AI assistant’s MCP configuration or connector settings. No credentials, environment variables, or headers are required.
Claude Code and Cursor
Section titled “Claude Code and Cursor”Add an entry to .mcp.json (Claude Code, project-level) or ~/.cursor/mcp.json (Cursor). Both clients accept the same shape:
{"mcpServers": { "checktiv-docs": { "url": "https://docs-mcp.checktiv.com/mcp" }}}Add an entry to ~/.codex/config.toml, or run codex mcp add and paste the URL when prompted:
[mcp_servers.checktiv-docs]url = "https://docs-mcp.checktiv.com/mcp"Claude.ai
Section titled “Claude.ai”- Open Customize → Connectors.
- Select Add custom connector.
- Paste the server URL,
https://docs-mcp.checktiv.com/mcp, and select Add. Leave the OAuth fields blank: the server has no authentication.
On a Team or Enterprise plan, an organization owner adds the connector once under Organization settings → Connectors instead (select Add, then Custom). Members then turn it on from their own Customize → Connectors.
ChatGPT
Section titled “ChatGPT”Developer mode gives ChatGPT full MCP client access, including servers with no authentication. It requires a Plus, Pro, Business, Enterprise, or Education account.
- Open Settings → Security and login and turn on Developer mode.
- Go to ChatGPT Plugins, select the plus button, and create a developer-mode app for the docs server. Paste the server URL,
https://docs-mcp.checktiv.com/mcp. The server needs no authentication. - Start a conversation, open the composer’s plus menu, choose Developer mode, and select the app.
Available tools
Section titled “Available tools”list_topics- lists the documentation topicssearch_docsandget_docoperate over (guidesanddevelopers), each with its slug, label, and a short description. Call this first to discover valid slugs.search_docs- keyword search across the documentation guides and developer reference content, returning matching passages grouped by topic.get_doc- fetches the full text of one documentation topic by its slug (use a slug returned bylist_topics).api_reference- keyword search over the REST API reference (paths, HTTP methods, summaries, and operation ids), sourced from the same OpenAPI document that powers the interactive reference.
Results from search_docs and api_reference are capped to a small set per query so a response stays a manageable size for a model’s context window. Narrow the query, or call get_doc directly with a slug from list_topics, if you don’t find what you need.
What it does not do
Section titled “What it does not do”- No authentication. There is no account context and no per-caller identity; every caller sees the same public content.
- No write operations. All four tools are read-only.
- No customer data. The server has no database binding and no secrets. It only reads the committed documentation source and the committed OpenAPI document, so there is nothing to leak.
Troubleshooting
Section titled “Troubleshooting”If a tool call returns no results, confirm the query matches content actually covered in the Guides or Developers sections, or browse the interactive reference directly to find the right term.
A high volume of requests from one IP address is throttled with an HTTP 429 response and a Retry-After header. Space out retries; there is no key to rotate and no limit to raise, since the server has no per-caller identity to grant a higher tier to.