AceDataCloud MCP Server
OfficialThis MCP server lets you manage your AceDataCloud account and platform resources. Here's what you can do:
Account & Balance
Check your credit balance and list subscriptions with per-service balance and spend
View referral/affiliate earnings and commission history
Usage & Analytics
Browse recent API call records (status, latency, credits deducted)
Get aggregated spend summaries by API over a configurable number of days
API Keys & Platform Tokens
List, create, and delete API keys (with optional spend caps and expiry)
List, create, and revoke platform tokens for authenticating with the management API
Orders & Payments
List recharge orders, create new ones, and generate payment URLs (Stripe, PayPal, WechatPay, AliPay, etc.)
Services & Catalog (no token required)
List/search available services, get detailed service info and pricing
List API endpoints and their OpenAPI specs
Browse downloadable datasets and third-party integrations
Models
List available chat-completion models and browse the full model catalog (filterable by provider/modality)
Look up a specific model's pricing and capabilities
Documentation
Full-text search, browse, and fetch documentation pages
Get a usage guide for the platform management tools
Announcements
List published platform announcements
Publish new announcements (admin/superuser only)
Note: All write operations (create/delete/pay) require
confirm=trueto execute; without it, they return a dry-run preview.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AceDataCloud MCP ServerHow many credits do I have left?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| Site Domains Frame |
| Site Domains Check |
| Export bounded order CSV. |
| Export bounded usage CSV. |
| Access Detail |
| Get one application and service details. |
| Get auto recharge. |
| Summarize remaining Credits. |
| Get one credential with secrets masked. |
| Get deployment scheduling events. |
| Get bounded deployment logs. |
| Get live deployment status. |
| Distribution Rank |
| Distribution Trend |
| Get one invoice. |
| Get a signed invoice URL. |
| Get one order. |
| Get an order's active invoice. |
| Summarize caller orders. |
| Distribution Platform_Rank |
| Get proxy usage detail. |
| Sites Detail |
| Site Banners Detail |
| Site Capability Detail |
| Site Document Detail |
| Site Domains Detail |
| Site Service Detail |
| Surveys Detail |
| Surveys Response |
| Translations Capabilities |
| Get API usage detail. |
| Current authenticated account profile. |
| Coin Wallet Summary |
| X402 Current |
| Access List |
| List account subscriptions. |
| List auto-recharge configs. |
| List billing profiles. |
| Coin Info |
| List API credentials with secrets masked. |
| Distribution Levels |
| Get referral status. |
| Preferences List |
| List invoices. |
| List OpenAI-compatible chat models. |
| List recharge orders. |
| List management tokens with values masked. |
| List proxy usage. |
| Site Banners List |
| Site Capability List |
| Site Document List |
| Site Domains List |
| Site Service List |
| Sites List |
| Surveys List |
| List recent API usage records. |
| List usage status codes. |
| Preview invoice amount. |
| Quote auto recharge. |
| Aggregate API spend by API. |
Catalog & docs
Tool | Description |
| Get one API's OpenAPI definition by path. |
| Fetch one documentation page by UUID. |
| Find models by ID or name. |
| Get one service's display pricing. |
| Get one service by UUID or alias. |
| List published announcements. |
| List API endpoints and billing metadata. |
| List downloadable datasets. |
| Browse documentation pages. |
| List platform integrations. |
| List rich model metadata and pricing. |
| List or search available services. |
| Search public documentation. |
Writes
Tool | Description |
| Apply for an invoice. |
| Access Cancel |
| Cancel an invoice. |
| Confirm saved card setup. |
| Coin Wallet Confirm |
| X402 Confirm |
| X402 Revoke |
| Start a stopped deployment. |
| Access Create |
| Create an application subscription. |
| Create auto recharge. |
| Create an API credential. |
| Create a recharge order. |
| Create a management token. |
| Site Banners Create |
| Site Capability Create |
| Site Document Create |
| Site Domains Create |
| Site Service Create |
| Coin Wallet Challenge |
| Delete auto recharge. |
| Revoke an API credential. |
| Revoke a management token. |
| Site Banners Delete |
| Site Capability Delete |
| Site Document Delete |
| Site Domains Delete |
| Site Service Delete |
| Start or redeploy an application workload. |
| Disable auto recharge. |
| Translations Disable |
| X402 Disable |
| Translations Enable |
| X402 Enable |
| Distribution Initialize |
| Sites Initialize |
| Create an order payment session. |
| Coin Refresh |
| Refresh payment state. |
| Reports Create |
| Rotate and disclose a credential secret once. |
| Save a deployment configuration draft. |
| Sites Menu Translation |
| Create card setup state. |
| X402 Setup |
| Surveys Submit |
| Destroy a workload and delete its application. |
| Update global-balance fallback policy. |
| Update auto recharge. |
| Update credential limits and API scope. |
| Preferences Update |
| Sites Update |
| Site Banners Update |
| Site Capability Update |
| Site Document Update |
| Site Domains Update |
| Site Service Update |
| Verify and fulfill Apple IAP. |
| Site Domains Verify |
Admin
Tool | Description |
| Publish a platform announcement. |
Calling a write/admin tool without confirm=true returns a redacted
dry-run preview and performs no HTTP request.
Related MCP server: MoluAbi MCP Server
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-acedatacloud3. 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 |
| — | Required. Platform token. |
|
| Management API base. |
|
| Request timeout (seconds). |
|
| 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 8000Notes
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.
Documentation
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides tools to manage OpenAI API keys and spending through the OpenAI API. Requires an OpenAI admin API key for secure access to account management features.2MIT
- AlicenseNot gradedqualityDmaintenanceEnables complete AI agent lifecycle management through MoluAbi's platform, allowing users to create, manage, and interact with AI assistants. Provides comprehensive tools for agent operations with secure authentication, usage tracking, and payment integration.11,502MIT
- FlicenseNot gradedqualityCmaintenanceAllows programmatic management of a Dify instance, including listing and creating datasets, managing applications, and tool providers.
- AlicenseNot gradedqualityDmaintenanceEnables querying DeepVLab account statistics and model usage analytics, including login, user profile, usage analytics, and cost calculation.1Apache 2.0
Related MCP Connectors
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Manage products, EU Digital Product Passports, operator parties, and GS1 EPCIS supply-chain events.
A paid remote MCP for AI SDK benchmark dashboard, built to return verdicts, receipts, usage logs, an
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AceDataCloud/AceDataCloudMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server