> ## 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

> How to install the CloudX ChatGPT app or add CloudX MCP to Claude Code, Cursor, and Codex.

# Installation

Use this CloudX MCP server URL:

```text theme={null}
https://provisioning.cloudx.io/mcp
```

## ChatGPT

The easiest way to use CloudX in ChatGPT is to install the published [CloudX ChatGPT app](https://chatgpt.com/apps/cloudx/asdk_app_69f227909e6081919c843b7ba15ddc3d).

<Steps>
  <Step title="Open The CloudX App">
    Sign in to ChatGPT on the web, then open the [CloudX ChatGPT app](https://chatgpt.com/apps/cloudx/asdk_app_69f227909e6081919c843b7ba15ddc3d).
  </Step>

  <Step title="Connect CloudX">
    Click `Connect`. If prompted, complete the CloudX authorization flow and review the permissions ChatGPT requests.
  </Step>

  <Step title="Start A Chat">
    Open a new ChatGPT conversation. Invoke CloudX with an `@CloudX` mention, or click `+` → `More` and select CloudX from the app list.
  </Step>

  <Step title="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.
  </Step>
</Steps>

<Info>
  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.
</Info>

Example prompt:

```text theme={null}
Use the CloudX MCP server to summarize dashboard performance for US iOS traffic over the last 7 days.
```

## Claude Code

Add the server:

```bash theme={null}
claude mcp add --transport http cloudx https://provisioning.cloudx.io/mcp
```

Official docs:

* [Claude Code MCP guide](https://docs.anthropic.com/en/docs/claude-code/mcp)

Verify it:

```bash theme={null}
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:

```text theme={null}
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:

* [Cursor MCP guide](https://docs.cursor.com/en/context/mcp)
* [Cursor CLI MCP guide](https://docs.cursor.com/cli/mcp)

For a project-specific setup, create `.cursor/mcp.json`:

```json theme={null}
{
  "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:

```bash theme={null}
cursor-agent mcp list
cursor-agent mcp login cloudx
```

Example prompt:

```text theme={null}
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:

```bash theme={null}
codex mcp add cloudx --url https://provisioning.cloudx.io/mcp
```

Official docs:

* [Codex MCP setup](https://platform.openai.com/docs/docs-mcp)

Verify it:

```bash theme={null}
codex mcp list
```

You can also add it manually to `~/.codex/config.toml`:

```toml theme={null}
[mcp_servers.cloudx]
url = "https://provisioning.cloudx.io/mcp"
```

Example prompt:

```text theme={null}
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](/en/mcp/tools) page if you want the exact argument names
* use the [Examples](/en/mcp/examples) page if you want ready-made payloads and prompt patterns

## Related

* [Tool Reference](/en/mcp/tools)
* [Examples](/en/mcp/examples)
* [Apps in ChatGPT](https://help.openai.com/en/articles/11487775-apps-in-chatgpt)
* [Claude Code MCP guide](https://docs.anthropic.com/en/docs/claude-code/mcp)
* [Cursor MCP guide](https://docs.cursor.com/en/context/mcp)
* [Codex MCP setup](https://platform.openai.com/docs/docs-mcp)
