AceDataCloudMCP
A Model Context Protocol (MCP) server for managing your AceDataCloud account through the platform management API.
Check your balance, look up usage and spend, manage API keys, list services, create and pay recharge orders, manage platform tokens, list models, and (for admins) publish announcements — directly from Claude, VS Code, or any MCP-compatible client.
This is the management / console API (
platform.acedata.cloud) — different from the data-generation MCP servers (Suno, Midjourney, …) that callapi.acedata.cloud.
Tool Reference
Account reads
| Tool | Description |
|---|---|
acedatacloud_get_balance |
Summarize remaining Credits. |
acedatacloud_get_user_info |
Current authenticated account profile. |
acedatacloud_list_applications |
List account subscriptions. |
acedatacloud_list_credentials |
List API credentials with secrets masked. |
acedatacloud_list_distributions |
Get referral status. |
acedatacloud_list_models |
List OpenAI-compatible chat models. |
acedatacloud_list_orders |
List recharge orders. |
acedatacloud_list_platform_tokens |
List management tokens with values masked. |
acedatacloud_list_usage |
List recent API usage records. |
acedatacloud_usage_summary |
Aggregate API spend by API. |
Catalog & docs
| Tool | Description |
|---|---|
acedatacloud_get_api_spec |
Get one API's OpenAPI definition by path. |
acedatacloud_get_doc |
Fetch one documentation page by UUID. |
acedatacloud_get_model |
Find models by ID or name. |
acedatacloud_get_pricing |
Get one service's display pricing. |
acedatacloud_get_service |
Get one service by UUID or alias. |
acedatacloud_list_announcements |
List published announcements. |
acedatacloud_list_apis |
List API endpoints and billing metadata. |
acedatacloud_list_datasets |
List downloadable datasets. |
acedatacloud_list_docs |
Browse documentation pages. |
acedatacloud_list_integrations |
List platform integrations. |
acedatacloud_list_model_catalog |
List rich model metadata and pricing. |
acedatacloud_list_services |
List or search available services. |
acedatacloud_search_docs |
Search public documentation. |
Writes
| Tool | Description |
|---|---|
acedatacloud_create_credential |
Create an API credential. |
acedatacloud_create_order |
Create a recharge order. |
acedatacloud_create_platform_token |
Create a management token. |
acedatacloud_delete_credential |
Revoke an API credential. |
acedatacloud_delete_platform_token |
Revoke a management token. |
acedatacloud_pay_order |
Create an order payment session. |
Admin
| Tool | Description |
|---|---|
acedatacloud_create_announcement |
Publish a platform announcement. |
Calling a write/admin tool without confirm=true returns a redacted
dry-run preview and performs no HTTP request.
Quick Start
1. Get a platform token
Create one at platform.acedata.cloud/console/platform-tokens.
It starts with platform- and never expires.
Use a platform token, not the per-service
api.acedata.cloudtoken — the latter returns 401 against the management API.
2. Install
pip install mcp-acedatacloud
3. Configure your client
Claude Desktop / VS Code (stdio):
{
"mcpServers": {
"acedatacloud": {
"command": "mcp-acedatacloud",
"env": {
"ACEDATACLOUD_PLATFORM_TOKEN": "platform-v1-xxxxxxxx"
}
}
}
}
Hosted (HTTP) — token per request:
{
"mcpServers": {
"acedatacloud": {
"url": "https://mcp.acedata.cloud/mcp",
"headers": { "Authorization": "Bearer platform-v1-xxxxxxxx" }
}
}
}
Example prompts
- "How many credits do I have left?"
- "What did I spend on Suno in the last 7 days?"
- "List my API keys and show which ones have a spend cap."
- "Create a new API key on application
<id>named ci." → previews, then run with confirm. - "Top up application
<id>with package<id>and give me the Stripe pay link."
Configuration
| Variable | Default | Description |
|---|---|---|
ACEDATACLOUD_PLATFORM_TOKEN |
— | Required. Platform token. |
PLATFORM_API_BASE_URL |
https://platform.acedata.cloud |
Management API base. |
PLATFORM_REQUEST_TIMEOUT |
30 |
Request timeout (seconds). |
LOG_LEVEL |
INFO |
Logging level. |
Development
pip install -e ".[dev,test,http]"
pytest -m "not integration" # unit tests
ruff check . # lint
mypy core tools # type-check
mcp-acedatacloud --transport http --port 8000
Notes
- Amounts (
remaining_amount,used_amount, totals) are in Credits, not USD. - Newly created credential/platform tokens are returned in full only once — store them immediately.
- Credential rotation = delete + recreate (no in-place rotate endpoint).
- Announcement tools require a superuser token.
License
MIT — see LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_acedatacloud-2026.8.10.1.tar.gz.
File metadata
- Download URL: mcp_acedatacloud-2026.8.10.1.tar.gz
- Upload date:
- Size: 42.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a302c53f93828739ace091d7066b9eff4c274f666ed7fae26d6913c9e61d48d
|
|
| MD5 |
2ba9b6c613ce102bb751dfcd4db2fbec
|
|
| BLAKE2b-256 |
984f5754d8b83640156941aeda6662667046637f2a1cf5fadac798dfac403d22
|
File details
Details for the file mcp_acedatacloud-2026.8.10.1-py3-none-any.whl.
File metadata
- Download URL: mcp_acedatacloud-2026.8.10.1-py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
578004de7d6ad85b437d1a435a57b6ca9d8a34fa7ee6bbc9cf8d79c52803f731
|
|
| MD5 |
395ed6b032e26856c8a85686ad3f8360
|
|
| BLAKE2b-256 |
1cd02c7a9559e43db1e09d380c1e750d40e0b5a684b36c5cff93e58e2765b880
|