AceData Docs MCP: Integrate the Entire Platform Documentation into Your AI Assistant
AceData Docs MCP is a public, no-installation MCP server: it encapsulates all documentation, API specifications (OpenAPI), model lists, pricing, and runnable code examples from AceData Cloud into tools that can be directly called by AI assistants.
Unlike our other 11 service-divided MCPs (Suno, Midjourney, Serp...), Docs MCP is a directory-type / meta MCP — it does not invoke generation capabilities but helps AI search documents, check interfaces, check prices, and generate calling code. No API Token is required, as it only reads the platform's publicly available read-only interfaces.
To see an overview of Claude integrating all MCPs, please refer to Claude Integrating AceData Cloud MCP Overview.
¶ Remote Connection (Recommended, Zero Installation)
Just need a URL:
https://docs.mcp.acedata.cloud/mcp
¶ Claude Code
claude mcp add --transport http acedata-docs https://docs.mcp.acedata.cloud/mcp
¶ Cursor / Windsurf / General JSON Client
{
"mcpServers": {
"acedata-docs": {
"url": "https://docs.mcp.acedata.cloud/mcp"
}
}
}
¶ claude.ai Web Version
- Open https://claude.ai/customize/connectors
- Click Add custom connector
- Fill in Name as
AceData Docs, and URL ashttps://docs.mcp.acedata.cloud/mcp - Click Add (public service, no OAuth authorization needed)
¶ Local Connection (stdio, via PyPI)
uvx mcp-docs
# Or: pip install mcp-docs && mcp-docs
¶ Available Tools
| Tool | Function |
|---|---|
acedata_search_docs |
Search documents by keywords/questions, returning snippets + links |
acedata_list_docs / acedata_fetch_doc |
Browse and read complete document pages |
acedata_list_services |
List services (API groups) |
acedata_list_apis |
List public API interfaces (filterable by service) |
acedata_get_spec |
Get the OpenAPI specification for a specific API (filterable by path/service) |
acedata_list_models / acedata_get_model |
Model list + dollar pricing |
acedata_get_pricing |
Pricing for a specific service |
acedata_get_code_example |
Generate runnable curl / Python / JavaScript code snippets |
acedata_list_mcp_servers |
Other MCP servers of AceData Cloud and connection methods |
¶ Usage
After connecting, simply ask questions in natural language, and the AI will automatically invoke the tools above:
How do I call AceData's Suno music generation interface? Give me a Python example.
Help me compare the prices of GPT-5.1 and Claude Opus 4.8 on AceData.
What video generation models does AceData have? How much do they cost?
¶ Its Relationship with llms.txt
The platform has already provided a static /llms.txt list; Docs MCP is its interactive upgraded version — AI can retrieve, read details, and obtain real OpenAPI and pricing in real-time, rather than just reading a static index.
