Ace Data Cloud MCP
Manage your Ace Data Cloud account — balance, usage, API keys, orders, and tokens.

Connect VS Code's AI agents to the Ace Data Cloud platform console. Check your balance, look up usage and spend, manage API keys and platform tokens, list services and models, and create or pay recharge orders — all from chat.
This extension registers the acedatacloud MCP server with VS Code so GitHub
Copilot and any other agent that speaks the Model Context Protocol
can call it directly from chat.
Quick Start
- Install this extension. VS Code registers the
acedatacloud MCP server automatically.
- Get an API key from Ace Data Cloud (Applications → API Key). New accounts include free trial credit.
- Open Copilot Chat in agent mode and ask for a account task — the extension prompts for the API key the first time and stores it in the OS keychain via VS Code's
SecretStorage.
You can rotate or remove the API key any time from the command palette:
- Ace Data Cloud MCP: Set Ace Data Cloud API Key
- Ace Data Cloud MCP: Clear Ace Data Cloud API Key
The default config talks to the hosted streamable-HTTP endpoint at
https://mcp.acedata.cloud/mcp — no Python, no uvx, no local install needed.
Example prompts
- "What is my Ace Data Cloud balance and usage this month?"
- "List my Ace Data Cloud API keys and create a new one for testing."
- "Show recent orders and how much I have spent."
Tool list is dynamically loaded from the server. Run a query to discover available tools.
Pricing
Free — management API calls are not billed. Recharges use your existing balance. See full pricing at https://docs.acedata.cloud.
Configuration
This extension implements the mcpServerDefinitionProviders contribution point
and registers a single hosted server with VS Code:
Provider id : acedatacloud.acedatacloud
Server label: Ace Data Cloud MCP
Server URL : https://mcp.acedata.cloud/mcp
Transport : Streamable HTTP
Auth : Bearer API key from VS Code SecretStorage (or $ACEDATACLOUD_PLATFORM_TOKEN)
You don't need to edit mcp.json — the extension handles registration and
token handling automatically. If you'd rather configure things by hand, the
sections below show equivalent mcp.json snippets you can use instead of
this extension.
Alternative: manual mcp.json (hosted)
{
"servers": {
"acedatacloud": {
"type": "http",
"url": "https://mcp.acedata.cloud/mcp",
"headers": { "Authorization": "Bearer ${input:acedatacloud_api_token}" }
}
},
"inputs": [
{
"type": "promptString",
"id": "acedatacloud_api_token",
"description": "Ace Data Cloud API key",
"password": true
}
]
}
Alternative: local stdio (no network roundtrip)
For offline dev, air-gapped environments, or pinning to a specific PyPI
version, install uv and use:
{
"servers": {
"acedatacloud": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-acedatacloud"],
"env": { "ACEDATACLOUD_PLATFORM_TOKEN": "${input:acedatacloud_api_token}" }
}
}
}
uvx will download and run the latest mcp-acedatacloud on demand.
Links
License
MIT — see LICENSE.