@aligulzar729/google-ads-mcp 0.1.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/LICENSE +21 -0
- package/README.md +391 -0
- package/dist/index.js +4494 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aligulzar729/google-ads-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Manage Google Ads from Claude, Codex, LibreChat, or any MCP client. Natural-language reporting plus guarded campaign, keyword, and Performance Max operations.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"google-ads-mcp": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=22.5"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"dev:http": "tsx watch src/index.ts --http",
|
|
18
|
+
"dev:stdio": "tsx src/index.ts --stdio",
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"lint": "eslint --ext .ts src",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"prepublishOnly": "npm run build && npm test"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"google-ads",
|
|
27
|
+
"google-ads-api",
|
|
28
|
+
"mcp",
|
|
29
|
+
"model-context-protocol",
|
|
30
|
+
"claude",
|
|
31
|
+
"codex",
|
|
32
|
+
"librechat",
|
|
33
|
+
"advertising",
|
|
34
|
+
"ppc",
|
|
35
|
+
"ai-agent"
|
|
36
|
+
],
|
|
37
|
+
"author": {
|
|
38
|
+
"name": "Ali Gulzar",
|
|
39
|
+
"email": "ali.gulzar729@gmail.com"
|
|
40
|
+
},
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/aligulzar729/google-ads-mcp.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/aligulzar729/google-ads-mcp/issues"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/aligulzar729/google-ads-mcp#readme",
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@hono/node-server": "^1.19.12",
|
|
55
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
56
|
+
"google-ads-api": "^23.0.0",
|
|
57
|
+
"google-auth-library": "^9.15.0",
|
|
58
|
+
"hono": "^4.12.9",
|
|
59
|
+
"zod": "^3.24.1"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/node": "^22.10.0",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
64
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
65
|
+
"eslint": "^8.57.1",
|
|
66
|
+
"eslint-import-resolver-typescript": "^3.7.0",
|
|
67
|
+
"eslint-plugin-import": "^2.31.0",
|
|
68
|
+
"tsup": "^8.3.5",
|
|
69
|
+
"tsx": "^4.19.2",
|
|
70
|
+
"typescript": "^5.7.2",
|
|
71
|
+
"vitest": "^2.1.8"
|
|
72
|
+
}
|
|
73
|
+
}
|