@getmcpads/google-ads-mcp-server 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +31 -9
package/README.md CHANGED
@@ -14,6 +14,8 @@ You run it. Your credentials stay on your machine. Nothing is proxied through a
14
14
  npx -y @getmcpads/google-ads-mcp-server
15
15
  ```
16
16
 
17
+ Also listed in the [MCP Registry](https://registry.modelcontextprotocol.io) as **`com.getmcpads/google-ads`**, so clients that read the registry can install it by name.
18
+
17
19
  > **Prefer not to run it yourself?** [getmcpads.com](https://www.getmcpads.com) is the hosted
18
20
  > version of this server, with Google Ads alongside Meta Ads, TikTok Ads, Pinterest Ads, GA4 and
19
21
  > Search Console behind a single endpoint, hosted OAuth, and cross-platform reporting.
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@getmcpads/google-ads-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
+ "mcpName": "com.getmcpads/google-ads",
4
5
  "description": "Open-source MCP server for the Google Ads API. 31 read tools and 7 write tools that preview before they apply, full Keyword Planner, Reach Planner and GAQL access. Self-hosted, bring your own credentials.",
5
6
  "license": "Apache-2.0",
6
7
  "type": "module",
@@ -39,19 +40,40 @@
39
40
  "typescript": "^5.7.0",
40
41
  "typescript-eslint": "^8.0.0"
41
42
  },
42
- "engines": { "node": ">=18.0.0" },
43
- "files": ["dist/", "LICENSE", "NOTICE", "README.md"],
43
+ "engines": {
44
+ "node": ">=18.0.0"
45
+ },
46
+ "files": [
47
+ "dist/",
48
+ "LICENSE",
49
+ "NOTICE",
50
+ "README.md"
51
+ ],
44
52
  "keywords": [
45
- "mcp", "mcp-server", "model-context-protocol", "google-ads",
46
- "google-ads-api", "gaql", "keyword-planner", "advertising",
47
- "marketing-analytics", "claude", "chatgpt", "cursor", "ai-agent"
53
+ "mcp",
54
+ "mcp-server",
55
+ "model-context-protocol",
56
+ "google-ads",
57
+ "google-ads-api",
58
+ "gaql",
59
+ "keyword-planner",
60
+ "advertising",
61
+ "marketing-analytics",
62
+ "claude",
63
+ "chatgpt",
64
+ "cursor",
65
+ "ai-agent"
48
66
  ],
49
67
  "repository": {
50
68
  "type": "git",
51
69
  "url": "git+https://github.com/getmcpads-com/google-ads-mcp-server.git"
52
70
  },
53
- "homepage": "https://github.com/getmcpads-com/google-ads-mcp-server#readme",
54
- "bugs": { "url": "https://github.com/getmcpads-com/google-ads-mcp-server/issues" },
71
+ "homepage": "https://www.getmcpads.com/tools/google-ads",
72
+ "bugs": {
73
+ "url": "https://github.com/getmcpads-com/google-ads-mcp-server/issues"
74
+ },
55
75
  "author": "GetMCPAds (https://www.getmcpads.com)",
56
- "publishConfig": { "access": "public" }
76
+ "publishConfig": {
77
+ "access": "public"
78
+ }
57
79
  }