Microsoft Ads
БесплатноНе проверенAn MCP server for the Microsoft Advertising (Bing Ads) API. Gives an MCP client live read and management access to your Microsoft Advertising accounts — reporti
Описание
An MCP server for the Microsoft Advertising (Bing Ads) API. Gives an MCP client live read and management access to your Microsoft Advertising accounts — reporting, campaign structure, and full write operations.
README
An MCP server for the Microsoft Advertising (Bing Ads) API. Gives an MCP client (Claude Code, Claude Desktop, etc.) live read and management access to your Microsoft Advertising accounts — reporting, campaign structure, and full write operations.
Works with Microsoft Advertising accounts that sign in with Google (the default) or with a Microsoft account.
⚠️ This server can change live campaigns and spend real money (enabling campaigns, raising budgets). Tools that affect spend are clearly marked and the server is designed to keep newly-created entities paused by default — but treat it like giving an assistant the keys to your ad account.
Tools
Read / analytics
| Tool | Description |
|---|---|
list_accounts |
Accounts the signed-in user can access |
list_campaigns |
Campaigns in an account |
list_ad_groups |
Ad groups in a campaign |
list_keywords |
Keywords in an ad group |
list_ads |
Ads in an ad group |
list_negative_keywords |
Campaign-level negatives |
performance_report |
account / campaign / ad_group / ad / keyword / search_term / geographic reports, predefined or custom date ranges, any aggregation |
find_wasted_spend |
Search terms that spent with no conversions (negative-keyword candidates) |
Write / management
| Tool | Description |
|---|---|
set_campaign_status |
Pause / enable a campaign |
set_campaign_budget |
Set daily budget |
set_ad_group_status |
Pause / enable an ad group |
set_keyword |
Update keyword status / bid |
add_negative_keywords / remove_negative_keywords |
Manage negatives |
create_campaign |
New Search campaign (paused) |
create_ad_group |
New ad group (paused) |
add_keywords |
Add keywords |
add_responsive_search_ad |
Add a Responsive Search Ad |
Higher-level (composite)
| Tool | Description |
|---|---|
account_overview |
One call: account KPIs + per-campaign breakdown + flags (zero-conversion spenders, budget-limited campaigns) |
compare_periods |
Last N days vs the preceding N days, with deltas and % change |
optimization_audit |
Prioritized action list: waste, low quality score, high CPA, scale candidates, budget-limited campaigns |
search_term_harvest |
Converting search queries not yet keywords — suggestions to add |
apply_negatives_from_waste |
Turn wasted search terms into negative keywords (dry-run by default) |
build_search_campaign |
Create a whole campaign (campaign + ad group + keywords + RSA) in one call, paused |
Report numbers come back already typed (floats/ints; percentages as plain
numbers, e.g. 1.89 means 1.89%).
How auth works
Microsoft Advertising has no app-only flow — every call needs a delegated
user token. You authorize once; the refresh token is stored at
~/.config/microsoft-ads-mcp/tokens.json (mode 0600) and the server silently
exchanges it for access tokens thereafter. You also need a Microsoft Advertising
developer token.
Choose a provider with MSADS_AUTH_PROVIDER:
google(default) — for Ads accounts created via "Sign in with Google".microsoft— for Ads accounts backed by an Entra or personal Microsoft account.
Prerequisites
- A Microsoft Advertising account you can sign into.
- A developer token: sign in at https://developers.ads.microsoft.com/, and request a token (production tokens for accounts you own are granted immediately). This is separate from OAuth.
- Python 3.10–3.13 (the
bingadsSOAP stack isn't happy on 3.14 yet).
Install
git clone https://github.com/james-julius/microsoft-ads-mcp.git
cd microsoft-ads-mcp
python3 -m venv .venv
.venv/bin/pip install -e .
cp .env.example .env # then edit .env
Configure auth
Option A — Google (default)
The Microsoft Advertising API accepts Google sign-in (SDK ≥ 13.0.26), so you can authenticate with the same Google account you use at ads.microsoft.com.
- In the Google Cloud Console: pick/create a project.
- APIs & Services → OAuth consent screen → Internal (Workspace org) or
External + add your email as a Test user. Scopes are just
openid email profile(nothing sensitive — no Google verification needed). - Credentials → Create credentials → OAuth client ID → Application type
Web application → Authorized redirect URI
http://localhost:8400→ Create. - Put the values in
.env:MSADS_AUTH_PROVIDER=google MSADS_DEVELOPER_TOKEN=your-developer-token MSADS_GOOGLE_CLIENT_ID=xxxx.apps.googleusercontent.com MSADS_GOOGLE_CLIENT_SECRET=GOCSPX-xxxx
Option B — Microsoft (Entra)
- Entra portal → App registrations → New registration.
- Supported account types: Accounts in any org directory and personal Microsoft accounts.
- Authentication → Add a platform → Mobile and desktop applications →
redirect
http://localhost:8400; set Allow public client flows = Yes.
- API permissions → Add → APIs my organization uses → "Microsoft Advertising
API" (or the
ads.microsoft.com/msads.managescope). - Put the values in
.env:MSADS_AUTH_PROVIDER=microsoft MSADS_DEVELOPER_TOKEN=your-developer-token MSADS_CLIENT_ID=your-application-client-id MSADS_TENANT=common # For a confidential (Web) app instead of public client, also set: # MSADS_CLIENT_SECRET=... # MSADS_REDIRECT_URI=http://localhost:8400
Authorize (one time)
.venv/bin/microsoft-ads-auth
This opens your browser on a loopback redirect, captures the auth code locally (nothing to copy/paste), and saves the refresh token.
Register with your MCP client
Claude Code
claude mcp add microsoft-ads -s user -- /absolute/path/to/microsoft-ads-mcp/.venv/bin/microsoft-ads-mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"microsoft-ads": {
"command": "/absolute/path/to/microsoft-ads-mcp/.venv/bin/microsoft-ads-mcp"
}
}
}
Restart Claude Desktop.
The server finds its .env from the project root, so no env vars are needed in
the client config.
Example prompts
- "List my Microsoft Ads campaigns and their last-30-day spend and conversions."
- "Find wasted spend in the last 30 days and suggest negative keywords."
- "Add 'free' and 'jobs' as phrase negatives to campaign X."
- "Create a paused Search campaign 'Brand' with a $10 daily budget."
Configuration reference
| Env var | Default | Notes |
|---|---|---|
MSADS_AUTH_PROVIDER |
google |
google or microsoft |
MSADS_DEVELOPER_TOKEN |
— | required |
MSADS_GOOGLE_CLIENT_ID / _SECRET |
— | required for Google |
MSADS_CLIENT_ID |
— | required for Microsoft |
MSADS_TENANT |
common |
Microsoft only |
MSADS_CLIENT_SECRET / MSADS_REDIRECT_URI |
— | Microsoft confidential app |
MSADS_LOOPBACK_PORT |
8400 |
must match the registered redirect |
MSADS_ENVIRONMENT |
production |
production or sandbox |
MSADS_TOKEN_FILE |
~/.config/microsoft-ads-mcp/tokens.json |
refresh-token store |
License
MIT — see LICENSE.
Установка Microsoft Ads
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/james-julius/microsoft-ads-mcpFAQ
Microsoft Ads MCP бесплатный?
Да, Microsoft Ads MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Microsoft Ads?
Нет, Microsoft Ads работает без API-ключей и переменных окружения.
Microsoft Ads — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Microsoft Ads в Claude Desktop, Claude Code или Cursor?
Открой Microsoft Ads на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Microsoft Ads with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
