OpenAI Ads MCP Server
Provides read-only tools for managing OpenAI Ads campaigns, ad groups, ads, and retrieving insights from the ChatGPT Ads API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OpenAI Ads MCP Servershow me my ad account insights"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OpenAI Ads MCP Server (ChatGPT Ads)
An MCP (Model Context Protocol) server that
exposes the ChatGPT Ads API
(https://api.ads.openai.com/v1) as tools an LLM host can call. Runs as a plain
Python process — no cloud platform required.
What it exposes
Tools map to the Advertiser API documented under Ads → API Reference:
Area | Tools |
Ad account |
|
Campaigns |
|
Ad groups |
|
Ads |
|
Insights |
|
Only read/list/report tools are registered (GET-equivalent Ads calls).
Mutating actions (create/update/activate/pause/archive/upload) are omitted for now.
All exposed tools set read-only hints (readOnlyHint) for MCP clients.
Architecture
python -m openai_ads_mcp stdio (Cursor, Claude Desktop, etc.)
python -m openai_ads_mcp --transport http streamable HTTP (remote clients)
└─ openai_ads_mcp/server.py registers every tool
├─ coordinator.py FastMCP singleton
├─ client.py httpx wrapper + bearer auth
└─ tools/ resource modulesSingle registration point.
openai_ads_mcp/server.pyimports all tool modules.Two transports. Stdio for local IDE hosts; HTTP for remote MCP clients (e.g. via ngrok).
Authentication
This server → Ads API. Set
OPENAI_ADS_API_KEY(headerAuthorization: Bearer …per the authentication docs).Caller → this server. Not enforced by default. Put auth (API gateway, reverse proxy, VPN, etc.) in front of HTTP mode if you expose it publicly.
Secrets: keep Ads keys out of git — copy .env.example to .env and add your key there.
Never commit real keys.
Quick start
Prerequisites
Python 3.11+
An OpenAI Ads API key
Install
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -U pip
pip install -r requirements.txt
pip install -e .Copy the example env file and add your key:
copy .env.example .env
# Edit .env and set OPENAI_ADS_API_KEYRun (stdio — for Cursor and other IDE MCP hosts)
The process blocks with little or no visible output: MCP uses stdin/stdout for JSON-RPC. You should see a one-line notice on stderr; do not run the server interactively in a normal terminal expecting a prompt.
python -m openai_ads_mcpEquivalent commands:
openai-ads-mcp
python -m openai_ads_mcp.serverCursor MCP config — use your venv's python.exe as command, project root as cwd:
{
"mcpServers": {
"openai-ads": {
"command": "C:\\path\\to\\chatgptads-mcp\\.venv\\Scripts\\python.exe",
"args": ["-m", "openai_ads_mcp"],
"cwd": "C:\\path\\to\\chatgptads-mcp"
}
}
}Or set OPENAI_ADS_API_KEY in the env block instead of using .env.
Run (HTTP — for remote MCP clients)
python -m openai_ads_mcp --transport http --host 127.0.0.1 --port 8000Point remote MCP clients at http://127.0.0.1:8000/mcp. To expose publicly, tunnel
with ngrok or similar and add auth at the gateway layer.
Environment variables
Variable | Required | Description |
| Yes | Ads API key |
Project layout
requirements.txt
pyproject.toml
.env.example
openai_ads_mcp/
__main__.py
server.py
coordinator.py
client.py
tools/
ad_account.py
campaigns.py
ad_groups.py
ads.py
insights.pySee also capabilities.md for a full tool reference.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Roast-Labs/openai-ads-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server