Available Formats
Individual Page Markdown
Append.md to any documentation URL to get that single page as plain Markdown. This is the cheapest option when an agent needs one topic rather than the whole corpus.
Every link in
llms.txt already points at the .md form, so an agent can read the index and fetch pages directly.
You can also request Markdown for the original URL by sending an Accept: text/markdown header, which returns the same content as the .md variant. Use whichever fits your client: the suffix when you control the URL, the header when you are fetching canonical links you’d rather not rewrite.
llms.txt
An index of every Mixpanel documentation page, following the llms.txt standard. Each entry links to the page’s Markdown version, and many carry a one-line description. The file is roughly 50 KB, so it fits comfortably in most context windows. https://docs.mixpanel.com/llms.txtllms-full.txt
The full text of every documentation page in a single file, currently about 3.5 MB. It exceeds most context windows, so chunk it or load it into a retrieval system rather than pasting it whole. https://docs.mixpanel.com/llms-full.txtOpenAPI Specifications
Every Mixpanel API is described by an OpenAPI specification. Use these to generate client code, validate requests, or give an agent precise knowledge of the available endpoints.
The same list appears under
## OpenAPI Specs in llms.txt.
Usage Examples
Copy or Open Any Page
Every documentation page has a menu in the top right for copying the page as Markdown or opening it directly in ChatGPT, Claude, Perplexity, Grok, Cursor, or VS Code. Use it for one-off questions when you don’t want to wire up an integration.Add to a System Prompt
Paste the contents ofllms.txt into your system prompt or tool context to give an agent a map of the documentation, then let it fetch the specific .md pages it needs. Avoid pasting llms-full.txt — at 3.5 MB it will overflow the context window.
Use with the Documentation MCP Server
Mixpanel hosts a Model Context Protocol server for the documentation itself athttps://docs.mixpanel.com/mcp. It exposes search and retrieval tools over the docs, so an agent can look up a topic on demand instead of loading the full corpus up front. Add it to any MCP-compatible client:
Use with the Mixpanel MCP Server
The Mixpanel MCP Server is a separate server that gives AI assistants live access to your own Mixpanel project data. Use the documentation endpoints for product knowledge and the Mixpanel MCP Server for querying your events.Use with Mixpanel Headless
Mixpanel Headless is a Python SDK for coding agents. Pair it withllms.txt to give a coding agent both the API reference and the conceptual documentation it needs to write correct Mixpanel code.
RAG Pipelines
Ingestllms-full.txt into a vector store or retrieval-augmented generation pipeline to power a custom docs chatbot or support tool. Chunk it first — the file is a single 3.5 MB document.