OpenAI Ads and ChatGPT Ads MCP Server for the Advertiser API
claude mcp add openai-ads-mcp -- npx -y openai-ads-mcp{
"mcpServers": {
"openai-ads-mcp": {
"command": "npx",
"args": ["-y", "openai-ads-mcp"],
"env": {
"OPENAI_ADS_API_KEY": "<openai_ads_api_key>",
"OPENAI_ADS_MCP_HTTP_TOKEN": "<openai_ads_mcp_http_token>"
}
}
}
}OPENAI_ADS_API_KEYOPENAI_ADS_MCP_HTTP_TOKENResumen de MCP Servers
# openai-ads-mcp
Trakkr tracks the full AI-visibility funnel, organic and paid. This is the open-source paid-side companion.
`openai-ads-mcp` is a typed Model Context Protocol server for OpenAI Ads, ChatGPT Ads, and OpenAI's Advertiser API. It lets Claude, Cursor, Codex, VS Code, and other MCP clients inspect Ads accounts, read performance insights, build paused campaigns, upload creatives, manage audiences, and send conversion events.
People often search for this as a ChatGPT Ads MCP because the ads appear in ChatGPT. The package keeps the OpenAI Ads MCP name because ChatGPT Ads are managed through OpenAI Ads, Ads Manager, and the OpenAI Advertiser API.
Current public release: `0.1.7`.
It ships in two runtimes with the same tool names, arguments, defaults, safety model, and vendored OpenAPI reference:
| Runtime | Best install | Package path |
| --- | --- | --- |
| Python | `uvx openai-ads-mcp` | `python/` |
| Node | `npx -y openai-ads-mcp` | `typescript/` |
The goal is simple: make OpenAI Ads workable from an AI assistant without making spend easy to trigger by accident.
## Install
Python with `uvx`:
```bash
export OPENAI_ADS_API_KEY="..."
export OPENAI_ADS_MCP_READONLY=1
uvx openai-ads-mcp
```
Python with pip:
```bash
python -m pip install openai-ads-mcp
export OPENAI_ADS_API_KEY="..."
export OPENAI_ADS_MCP_READONLY=1
openai-ads-mcp
```
Node with `npx`:
```bash
export OPENAI_ADS_API_KEY="..."
export OPENAI_ADS_MCP_READONLY=1
npx -y openai-ads-mcp
```
Node with npm:
```bash
npm install -g openai-ads-mcp
export OPENAI_ADS_API_KEY="..."
export OPENAI_ADS_MCP_READONLY=1
openai-ads-mcp
```
For local development from this monorepo:
```bash
cd services/openai-ads-mcp/python
python -m pip install -e .
python -m openai_ads_mcp
cd ../typescript
npm install
npm run build
node dist/index.js
```
## Configuration
Create an Ads API key in OpenAI Ads Manager, then pass it as an environment variable.
```bash
export OPENAI_ADS_API_KEY="..."
```
Recommended first connection:
```bash
export OPENAI_ADS_MCP_READONLY=1
uvx openai-ads-mcp
```
Or with Node:
```bash
export OPENAI_ADS_MCP_READONLY=1
npx -y openai-ads-mcp
```
Readonly mode hides every write tool. They are absent from `tools/list` and cannot be called. Once you have confirmed the account and inspected data, unset `OPENAI_ADS_MCP_READONLY` to enable writes.
Optional environment variables:
| Variable | Purpose |
| --- | --- |
| `OPENAI_ADS_API_KEY` | Required bearer key for `https://api.ads.openai.com/v1`. |
| `OPENAI_ADS_API_BASE_URL` | Optional HTTPS override for tests or proxies. |
| `OPENAI_ADS_MCP_READONLY` | Set to `1` or `true` to register read tools only. |
| `OPENAI_ADS_BUDGET_CEILING_USD` | Optional budget guard. Default `100`. |
## Discovery Metadata
This repo includes `server.json` for the official MCP Registry and downstream MCP directories. The canonical registry name is:
```text
io.github.trakkr-aisearch/openai-ads-mcp
```
The Node package includes the matching `mcpName`, and the Python package README includes the matching `mcp-name` marker for PyPI ownership verification.
The registry metadata also advertises the hosted read-only Streamable HTTP endpoint:
```text
https://openai-ads-mcp.trakkr.ai/mcp
```
That hosted endpoint is for discovery and read-only usage. It does not store or use a Trakkr-owned OpenAI Ads API key.
The hosted endpoint allows anonymous initialize and `tools/list`; Ads API tool calls require the caller to send `X-OpenAI-Ads-API-Key`.
## MCP client examples
### Claude Code, Python runtime
```bash
claude mcp add openai-ads \
-e OPENAI_ADS_API_KEY=your_ads_key_here \
-e OPENAI_ADS_MCP_READONLY=1 \
-- uvx openai-ads-mcp
```
### Claude Code, Node runtime
```bash
claude mcp add openai-ads \
-e OPENAI_ADS_API_KEY=your_ads_key_here \
-e OPENAI_ADS_MCP_READONLY=1 \
-- npx -y openai-ads-mcp
```
### Cursor or Claude Desktop
```json
{
"mcpServers": {
"openai-ads": {
"command": "uvx",
"args": ["openai-ads-mcp"],
"env": {
"OPENAI_ADS_API_KEY": "your_ads_key_here",
"OPENAI_ADS_MCP_READONLY": "1"
}
}
}
}
```
Use `"command": "npx"` and `"args": ["-y", "openai-ads-mcp"]` for the Node runtime.
### Codex CLI
```toml
[mcp_servers.openai_ads]
command = "uvx"
args = ["openai-ads-mcp"]
env = { OPENAI_ADS_API_KEY = "your_ads_key_here", OPENAI_ADS_MCP_READONLY = "1" }
```
### MCP Registry
Registry-compatible clients should discover this server by name:
```text
io.github.trakkr-aisearch/openai-ads-mcp
```
The registry metadata lists npm, PyPI, and the hosted Streamable HTTP endpoint. The hosted endpoint does not require an API key for discovery, but it does require `X-OpenAI-Ads-API-Key` for Ads API tool calls.
### Docker
The repository includes production Dockerfiles for hosted Streamable HTTP deployments:
```bash
docker build -t openai-ads-mcp .
docker run --rm -p 8080:8080 \
-e OPENAI_ADS_MCP_HOSTED_PUBLIC=1 \
-e OPENAI_ADS_MCP_TELEMETRY_SALT="local-test-salt" \
openai-ads-mcp
```
The narrower `typescript/Dockerfile` is used by the Cloud Run deploy script. For local stdio use, prefer `uvx openai-ads-mcp` or `npx -y openai-ads-mcp`.
## Streamable HTTP
The Node runtime can also serve MCP over Streamable HTTP for hosted or team deployments:
```bash
export OPENAI_ADS_MCP_HTTP_TOKEN="choose_a_long_random_token"
export OPENAI_ADS_MCP_READONLY=1
npx -y openai-ads-mcp --http
```
Defaults:
- URL: `http://127.0.0.1:8080/mcp` locally, or `https://your-host/mcp` behind a proxy.
- Health checks: `GET /healthz`, `GET /health`, and `GET /ready`.
- Remote mode forces `OPENAI_ADS_MCP_READONLY=1` unless `OPENAI_ADS_MCP_HTTP_ALLOW_WRITES=1` is set.
- `OPENAI_ADS_MCP_HTTP_TOKEN` protects the MCP endpoint with `Authorization: Bearer <token>`.
- Clients may send `X-OpenAI-Ads-API-Key` per request, or the server can use a server-side `OPENAI_ADS_API_KEY`.
Useful hosted env vars:
| Variable | Purpose |
| --- | --- |
| `PORT` or `OPENAI_ADS_MCP_HTTP_PORT` | HTTP port. Default `8080`. |
| `OPENAI_ADS_MCP_HTTP_PATH` | MCP path. Default `/mcp`. |
| `OPENAI_ADS_MCP_HEALTH_PATH` | Health path. Default `/healthz`. |
| `OPENAI_ADS_MCP_HTTP_TOKEN` | Optional bearer token required by hosted clients. |
| `OPENAI_ADS_MCP_HTTP_ALLOW_WRITES` | Set to `1` only when you want write tools exposed over HTTP. |
| `OPENAI_ADS_MCP_HTTP_CORS_ORIGIN` | Optional CORS origin. Default `*`. |
For public hosted endpoints, keep writes disabled and require users to bring their own Ads API key per request. Do not put a shared Ads API key in browser-visible config.
### Public hosted mode
For a public discovery endpoint, use:
```bash
export OPENAI_ADS_MCP_HOSTED_PUBLIC=1
export OPENAI_ADS_MCP_TELEMETRY_SALT="long_random_value"
npx -y openai-ads-mcp --http
```
Hosted public mode:
- forces readonly mode
- refuses to start if `OPENAI_ADS_MCP_HTTP_ALLOW_WRITES=1`
- refuses to start if `OPENAI_ADS_API_KEY` is present
- rejects `X-OpenAI-Ads-API-Base-Url`
- allows anonymous initialize and `tools/list`
- requires `X-OpenAI-Ads-API-Key` for Ads API tool calls
- rate-limits discovery and tool calls
- logs only redacted summaries, hashes, counts, status, latency, and client metadata
The production runbook is in `HOSTED_DEPLOY.md`.
## Tool Surface
The Python and Node runtimes expose the same 27 tools.
| Group | Tools |
| --- | --- |
| Account | `get_account` |
| Campaigns | `list_campaigns`, `get_campaign`, `create_campaign`, `update_campaign`, `set_campaign_state` |
| AdGroups | `list_ad_groups`, `get_ad_group`, `create_ad_group`, `update_ad_group`, `set_ad_group_state` |
| Ads | `list_ads`, `get_ad`, `upload_creative`, `create_ad`, `update_ad`, `set_ad_state` |
| Insights | `get_insights` |
| Audiences | `list_audiences`, `get_audience`, `search_geo`, `manage_audience` |
| Conversions | `manage_conversions`, `send_conversions` |
| Helpers | `build_campaign`, `draft_context_hints`, `bulk_ab_test_hints` |
### High-use tools
| Tool | What it does |
| --- | --- |
| `get_account` | Gets the ad account and confirms the API key works. |
| `get_insights` | Reads account, campaign, ad group, or ad insights with fields, filters, sort, segments, and cursor pagination. |
| `create_campaign` | Creates a paused campaign with a guarded lifetime budget, including conversion-optimized campaigns with one event setting. |
| `upload_creative` | Uploads an image URL or local image file and returns `file_id`. |
| `create_ad` | Creates a paused ad. `chat_card` requires `target_url` and `file_id`. |
| `build_campaign` | Creates one paused campaign, one paused ad group, and paused ads in a guarded workflow. |
| `draft_context_hints` | Deterministically drafts API-shaped `context_hints` with no hidden LLM call. |
| `send_conversions` | Sends conversion events to `https://bzr.openai.com/v1/events?pid=...` after local validation, with optional `validate_only`. Supports `obref` and mobile app lifecycle events. |
`get_insights` accepts the current tagged time-range shape, for example:
```json
{"type":"unix_range","start":1764547200,"end":1765152000}
```
The older nested shape is normalized for backward compatibility.
For conversion optimization, pass `bidding_type="conversions"` and exactly one
`conversion_event_setting_ids` value to `create_campaign`. The campaign cannot
use product-feed mode, and child ad groups must bill by click. `build_campaign`
offers the same path through its singular `conversion_event_setting_id` helper
argument. The bid is a CPA input even though OpenAI bills the child ad group per
click.
OpenAI's Bulk API remains a limited preview and is not exposed as a general MCP
tool. Product-feed campaign objects are supported, but feed connection and
catalog upload still happen in Ads Manager or through OpenAI's supported SFTP
flow.
## Safety Model
This server can affect real ad spend, so the defaults are deliberately cautious.
1. Create tools default to paused. `build_campaign` creates eveLo que la gente pregunta sobre openai-ads-mcp
¿Qué es trakkr-aisearch/openai-ads-mcp?
+
trakkr-aisearch/openai-ads-mcp es mcp servers para el ecosistema de Claude AI. OpenAI Ads and ChatGPT Ads MCP Server for the Advertiser API Tiene 3 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala openai-ads-mcp?
+
Puedes instalar openai-ads-mcp clonando el repositorio (https://github.com/trakkr-aisearch/openai-ads-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar trakkr-aisearch/openai-ads-mcp?
+
trakkr-aisearch/openai-ads-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.
¿Quién mantiene trakkr-aisearch/openai-ads-mcp?
+
trakkr-aisearch/openai-ads-mcp es mantenido por trakkr-aisearch. La última actividad registrada en GitHub es de today, con 0 issues abiertos.
¿Hay alternativas a openai-ads-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega openai-ads-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/trakkr-aisearch-openai-ads-mcp)<a href="https://claudewave.com/repo/trakkr-aisearch-openai-ads-mcp"><img src="https://claudewave.com/api/badge/trakkr-aisearch-openai-ads-mcp" alt="Featured on ClaudeWave: trakkr-aisearch/openai-ads-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface