@getmcpads/google-ads-mcp-server 1.0.1 → 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/CHANGELOG.md +20 -0
- package/README.md +139 -106
- package/dist/cli.js +1649 -423
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1658 -432
- package/dist/index.js.map +1 -1
- package/package.json +15 -8
- package/server-card.json +4461 -0
- package/server.json +61 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getmcpads/google-ads-mcp-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"mcpName": "com.getmcpads/google-ads",
|
|
5
|
-
"description": "
|
|
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": ">=
|
|
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": "
|
|
82
|
+
"author": "Emmanuel, getmcpads (https://www.getmcpads.com)",
|
|
76
83
|
"publishConfig": {
|
|
77
84
|
"access": "public"
|
|
78
85
|
}
|