The URLs below use
docs.creatoraudit.com as a placeholder for this documentation
site’s domain. Replace it with the real docs domain.The four sources
llms.txt
https://docs.creatoraudit.com/llms.txtA curated, structured map of the docs — page titles and links. Small enough to drop into a prompt so the agent knows what exists.llms-full.txt
https://docs.creatoraudit.com/llms-full.txtThe full text of the docs in one file. Use it when you want to load the entire documentation as context.Per-page Markdown
Append
.md to any page URL, e.g. https://docs.creatoraudit.com/agents/recipes.mdA clean Markdown version of a single page — ideal when you need just one topic.OpenAPI spec
https://api.creatoraudit.com/v2/openapi.jsonThe machine-readable API contract. Turn it into tool/function definitions for the API itself.Search the docs live over MCP
For an always-current source, point your agent at the docs MCP server athttps://docs.creatoraudit.com/mcp. It exposes search and content-retrieval tools, so the agent queries the docs on demand instead of carrying a snapshot. See Connect via MCP for connection commands for Claude Code, Cursor, and VS Code.
When to use which
Quick orientation → llms.txt
Give the agent the map so it knows which topics exist, then let it fetch the specific page it needs as Markdown.
Full grounding → llms-full.txt
Load the whole corpus when you want the agent to answer broadly about CreatorAudit
without round-tripping for each page. Best for large-context models.
Live lookups → docs MCP (/mcp)
Use MCP search when you want the freshest answer and don’t want to manage a copy of
the docs yourself.
Calling the API → OpenAPI spec
To generate tools that hit the CreatorAudit API, use the OpenAPI document — not the docs MCP. The docs MCP searches documentation; it does not call the API. See Use the API as agent tools.
Next
- Generate tools from the contract — Use the API as agent tools.
- Wrap the API as MCP tools — Connect via MCP.
- Start from the top — CreatorAudit for AI agents.