mcp-bing-ads 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -4
- package/dist/build-info.json +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Bing Ads MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/mcp-bing-ads)
|
|
4
|
+
[](https://www.npmjs.com/package/mcp-bing-ads)
|
|
5
|
+
[](https://github.com/mharnett/mcp-bing-ads)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
3
8
|
Production-grade MCP server for Microsoft Advertising (Bing Ads) API. Enables Claude to manage Bing/Microsoft Ads accounts with full campaign, ad group, keyword, and performance analysis capabilities.
|
|
4
9
|
|
|
5
10
|
**Features:**
|
|
@@ -224,10 +229,12 @@ Contributions welcome! Please:
|
|
|
224
229
|
|
|
225
230
|
---
|
|
226
231
|
|
|
227
|
-
|
|
232
|
+
## Built By
|
|
228
233
|
|
|
229
|
-
**
|
|
234
|
+
**[Mark Harnett](https://www.linkedin.com/in/markharnett/)** — Demand generation leader and paid media practitioner building AI-powered ad management tools. This is the first comprehensive open-source Bing Ads MCP server — born from managing real campaigns across multiple accounts and wanting Claude to do the heavy lifting.
|
|
230
235
|
|
|
231
|
-
|
|
236
|
+
Built with production workloads in mind: resilient API calls (circuit breakers, retry with backoff, response truncation), full Quality Score diagnostics, and negative keyword management at scale.
|
|
232
237
|
|
|
233
|
-
**
|
|
238
|
+
**Also by Mark:** [mcp-linkedin-ads](https://github.com/mharnett/mcp-linkedin-ads) — LinkedIn Ads MCP server with 65+ tools.
|
|
239
|
+
|
|
240
|
+
**Last Updated:** 2026-03-13
|
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"sha":"
|
|
1
|
+
{"sha":"931c255","builtAt":"2026-04-09T18:53:18.023Z"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-bing-ads",
|
|
3
3
|
"mcpName": "io.github.mharnett/bing-ads",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"description": "MCP server for Microsoft Advertising (Bing Ads) API with campaign, ad group, keyword, and performance reporting. First comprehensive open-source Bing Ads MCP.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"mcp-bing-ads": "dist/index.js"
|
|
9
|
+
},
|
|
7
10
|
"types": "dist/index.d.ts",
|
|
8
11
|
"type": "module",
|
|
9
12
|
"exports": {
|
|
@@ -51,6 +54,7 @@
|
|
|
51
54
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
52
55
|
"cockatiel": "^3.2.1",
|
|
53
56
|
"pino": "^8.21.0",
|
|
57
|
+
"pino-pretty": "^13.1.3",
|
|
54
58
|
"zod": "^3.22.4"
|
|
55
59
|
},
|
|
56
60
|
"devDependencies": {
|
|
@@ -59,4 +63,4 @@
|
|
|
59
63
|
"typescript": "^5.3.0",
|
|
60
64
|
"vitest": "^4.0.18"
|
|
61
65
|
}
|
|
62
|
-
}
|
|
66
|
+
}
|