Skip to main content

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

The easiest way to use CloudX in ChatGPT is to install the published CloudX ChatGPT app.
1

Open The CloudX App

Sign in to ChatGPT on the web, then open the CloudX ChatGPT app.
2

Connect CloudX

Click Connect. If prompted, complete the CloudX authorization flow and review the permissions ChatGPT requests.
3

Start A Chat

Open a new ChatGPT conversation. Invoke CloudX with an @CloudX mention, or click +More and select CloudX from the app list.
4

Ask For CloudX Data

Ask reporting or documentation questions in natural language. Use exact dates, countries, platforms, and app bundles when you need reproducible results.
In Business, Enterprise, or Edu workspaces, an admin may need to enable the CloudX app before workspace members can connect it. If Connect is unavailable, check your workspace app settings, plan eligibility, and regional availability.
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:
claude mcp list
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:
codex mcp list
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