Connect over MCP
The docs are served as an MCP (Model Context Protocol) server. Point any MCP-capable tool at one URL and it can search and read this documentation from inside the tool.- Claude Code
- Cursor
- ChatGPT
The docs MCP is read-only: it searches and returns documentation. It never sees, asks for, or transmits your API key. Calling the API is a separate step, below, and always uses your own key.
Ask AI on any page
Every page has a contextual menu next to its title. Use it to copy the page as Markdown, view it as plain text, or open it in ChatGPT or Claude with the page content already attached, so you can ask questions without leaving your assistant.Plain text for LLMs
For tools that consume documentation as a single file:/llms.txtis a compact index of every page./llms-full.txtis the entire documentation as one plain-text file, ready to paste into a model’s context.
Call the API with AI
Reading the docs is one half; the other is making requests.- Open the API Reference. Every endpoint has a live playground and copy-paste cURL, generated from the OpenAPI spec.
- Add your
x-api-key(see Authentication) and the base URL for your environment (see Environments). - An MCP-connected assistant can read an endpoint page and generate correct request code for your language, because the request and response shapes come straight from the spec.
x-api-key header over HTTPS on requests you make. It is never part of the docs, the MCP server, or any example on this site.
When the base URLs change
The system is built so a future move is a swap, not a rebuild:- The API base URLs always come from Environments; they are driven by the
serversin the OpenAPI spec, so a change updates the reference, the playground, and every cURL example at once. Take the current base URL from that page rather than hardcoding it. - The docs MCP URL follows this documentation site; if the docs move to a new domain, use the MCP URL shown on this page at that time.
Related
- Quick Start if you are integrating by hand.
- Authentication for the API key header and rate limits.
- API Reference for conventions and the response envelope.