@getmcpads/google-ads-mcp-server 1.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/LICENSE +201 -0
- package/NOTICE +16 -0
- package/README.md +357 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +8742 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.js +8725 -0
- package/dist/index.js.map +1 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@getmcpads/google-ads-mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"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
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"google-ads-mcp": "dist/cli.js"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup",
|
|
20
|
+
"dev": "tsx watch src/cli.ts",
|
|
21
|
+
"doctor": "node scripts/doctor.mjs",
|
|
22
|
+
"start": "node dist/cli.js",
|
|
23
|
+
"test": "tsx --test test/*.test.mjs",
|
|
24
|
+
"lint": "eslint src/",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"prepublishOnly": "npm run build"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
30
|
+
"zod": "^3.24.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@eslint/js": "^9.0.0",
|
|
34
|
+
"@types/node": "^22.0.0",
|
|
35
|
+
"eslint": "^9.0.0",
|
|
36
|
+
"globals": "^15.0.0",
|
|
37
|
+
"tsup": "^8.0.0",
|
|
38
|
+
"tsx": "^4.0.0",
|
|
39
|
+
"typescript": "^5.7.0",
|
|
40
|
+
"typescript-eslint": "^8.0.0"
|
|
41
|
+
},
|
|
42
|
+
"engines": { "node": ">=18.0.0" },
|
|
43
|
+
"files": ["dist/", "LICENSE", "NOTICE", "README.md"],
|
|
44
|
+
"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"
|
|
48
|
+
],
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/getmcpads-com/google-ads-mcp-server.git"
|
|
52
|
+
},
|
|
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" },
|
|
55
|
+
"author": "GetMCPAds (https://www.getmcpads.com)",
|
|
56
|
+
"publishConfig": { "access": "public" }
|
|
57
|
+
}
|