Documentation Index
Fetch the complete documentation index at: https://docs.cloudx.io/llms.txt
Use this file to discover all available pages before exploring further.
Installation
Use this CloudX MCP server URL:
https://provisioning.cloudx.io/mcp
ChatGPT
ChatGPT supports remote MCP servers through Developer mode.
Official docs:
Enable Developer Mode
In ChatGPT on the web, go to Settings → Apps → Advanced settings → Developer mode, then turn it on.
Create An App
Open the ChatGPT Apps settings and create a new app for your MCP server.
Enter The CloudX URL
Use https://provisioning.cloudx.io/mcp as the MCP server URL.
Use It In Chat
Start a conversation in Developer mode and enable the CloudX app for that chat.
Example prompt:
Use the CloudX MCP server to summarize dashboard performance for US iOS traffic over the last 7 days.
Claude Code
Add the server:
claude mcp add --transport http cloudx https://provisioning.cloudx.io/mcp
Official docs:
Verify it:
Then open Claude Code in your project. If CloudX asks you to sign in, run /mcp inside Claude Code and complete the browser sign-in flow.
Example prompt:
Use the CloudX MCP server to compare bidder performance for US Android traffic over the last 7 days.
Cursor
Cursor supports remote MCP servers through mcp.json.
Official docs:
For a project-specific setup, create .cursor/mcp.json:
{
"mcpServers": {
"cloudx": {
"url": "https://provisioning.cloudx.io/mcp"
}
}
}
For a global setup, create ~/.cursor/mcp.json with the same content.
If you use the Cursor CLI, you can verify the server with:
cursor-agent mcp list
cursor-agent mcp login cloudx
Example prompt:
Use the CloudX MCP server to find the lowest fill-rate banner ad units for com.example.game in the US on Android.
Codex
Add the server:
codex mcp add cloudx --url https://provisioning.cloudx.io/mcp
Official docs:
Verify it:
You can also add it manually to ~/.codex/config.toml:
[mcp_servers.cloudx]
url = "https://provisioning.cloudx.io/mcp"
Example prompt:
Use the CloudX MCP server to show app-level revenue for iOS traffic in the US from April 15, 2026 to April 21, 2026.
Setup Tips
- keep the server name short, such as
cloudx
- use exact dates when you want reproducible reporting
- use the Tool Reference page if you want the exact argument names
- use the Examples page if you want ready-made payloads and prompt patterns