@getmcpads/google-ads-mcp-server 1.0.2 → 2.0.0

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@getmcpads/google-ads-mcp-server",
3
- "version": "1.0.2",
3
+ "version": "2.0.0",
4
4
  "mcpName": "com.getmcpads/google-ads",
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
+ "description": "Google Ads MCP server: 35 read tools, 10 opt-in preview-first writes.",
6
6
  "license": "Apache-2.0",
7
7
  "type": "module",
8
8
  "main": "./dist/index.js",
@@ -21,10 +21,13 @@
21
21
  "dev": "tsx watch src/cli.ts",
22
22
  "doctor": "node scripts/doctor.mjs",
23
23
  "start": "node dist/cli.js",
24
- "test": "tsx --test test/*.test.mjs",
24
+ "test": "tsx --test test/*.test.mjs && npm run test:unit",
25
25
  "lint": "eslint src/",
26
26
  "typecheck": "tsc --noEmit",
27
- "prepublishOnly": "npm run build"
27
+ "prepublishOnly": "npm run typecheck && npm run build && node scripts/generate-catalog.mjs && npm test",
28
+ "test:unit": "vitest run",
29
+ "catalog": "npm run build && node scripts/generate-catalog.mjs",
30
+ "bundle": "npm run catalog && node scripts/build-mcpb.mjs"
28
31
  },
29
32
  "dependencies": {
30
33
  "@modelcontextprotocol/sdk": "^1.12.0",
@@ -38,16 +41,20 @@
38
41
  "tsup": "^8.0.0",
39
42
  "tsx": "^4.0.0",
40
43
  "typescript": "^5.7.0",
41
- "typescript-eslint": "^8.0.0"
44
+ "typescript-eslint": "^8.0.0",
45
+ "vitest": "^4.1.11"
42
46
  },
43
47
  "engines": {
44
- "node": ">=18.0.0"
48
+ "node": ">=22.12.0"
45
49
  },
46
50
  "files": [
47
51
  "dist/",
48
52
  "LICENSE",
49
53
  "NOTICE",
50
- "README.md"
54
+ "README.md",
55
+ "server-card.json",
56
+ "server.json",
57
+ "CHANGELOG.md"
51
58
  ],
52
59
  "keywords": [
53
60
  "mcp",
@@ -72,7 +79,7 @@
72
79
  "bugs": {
73
80
  "url": "https://github.com/getmcpads-com/google-ads-mcp-server/issues"
74
81
  },
75
- "author": "GetMCPAds (https://www.getmcpads.com)",
82
+ "author": "Emmanuel, getmcpads (https://www.getmcpads.com)",
76
83
  "publishConfig": {
77
84
  "access": "public"
78
85
  }