🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

mcp-acedatacloud

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-acedatacloud

MCP Server for managing your AceDataCloud account (balances, usage, API keys, orders, announcements)

pipPyPI
Version
2026.7.30.0
Weekly downloads
146
64.04%
Maintainers
1
Weekly downloads
 

AceDataCloudMCP

PyPI version Python 3.10+ License: MIT MCP

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 call api.acedata.cloud.

Tool Reference

Read (always safe)

ToolDescription
acedatacloud_get_balanceRemaining credits per subscription, plus a total.
acedatacloud_list_applicationsYour subscriptions with balance/spend.
acedatacloud_list_servicesList or search available services.
acedatacloud_list_usageRecent API call records (status, latency, credits).
acedatacloud_usage_summarySpend aggregated by API over N days.
acedatacloud_list_credentialsYour API keys (token values masked).
acedatacloud_list_ordersRecharge orders.
acedatacloud_list_platform_tokensPlatform tokens (masked).
acedatacloud_list_modelsAvailable chat models.
acedatacloud_list_announcementsPublished announcements.
acedatacloud_list_distributionsYour referral/affiliate status + commission history.

Catalog & Docs (public — no token needed)

ToolDescription
acedatacloud_get_serviceOne service's detail (type, unit, free_amount, cost), by alias or id.
acedatacloud_get_pricingA service's billing unit, free_amount and display pricing.
acedatacloud_list_apisAPI endpoints, optionally scoped to one service (path, method, cost).
acedatacloud_get_api_specOne API's OpenAPI definition + cost, by path.
acedatacloud_list_datasetsDownloadable datasets (price, download/preview URLs).
acedatacloud_list_integrationsThird-party integrations.
acedatacloud_search_docsFull-text search the documentation (alias/title/snippet/url).
acedatacloud_list_docsBrowse documentation pages.
acedatacloud_get_docFetch one doc's full content by UUID.
acedatacloud_list_model_catalogRich model catalog (provider, modality, credit pricing).
acedatacloud_get_modelLook up a model's pricing & capabilities by id/name.

Write (require confirm=true)

ToolDescription
acedatacloud_create_credentialCreate an API key on an application.
acedatacloud_delete_credentialRevoke an API key.
acedatacloud_create_orderCreate a recharge order.
acedatacloud_pay_orderCreate a payment session and return pay_url.
acedatacloud_create_platform_tokenCreate a new platform token.
acedatacloud_delete_platform_tokenRevoke a platform token.

Admin (superuser token)

ToolDescription
acedatacloud_create_announcementPublish a platform announcement (confirm=true).

Calling a write/admin tool without confirm=true returns a dry-run preview and changes nothing.

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.cloud token — 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

VariableDefaultDescription
ACEDATACLOUD_PLATFORM_TOKENRequired. Platform token.
PLATFORM_API_BASE_URLhttps://platform.acedata.cloudManagement API base.
PLATFORM_REQUEST_TIMEOUT30Request timeout (seconds).
LOG_LEVELINFOLogging 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.

Keywords

acedata

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts