@getmcpads/google-analytics-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.
- package/README.md +2 -0
- package/package.json +44 -12
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ machine.
|
|
|
15
15
|
npx -y @getmcpads/google-analytics-mcp-server
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
Also listed in the [MCP Registry](https://registry.modelcontextprotocol.io) as **`com.getmcpads/google-analytics`**, so clients that read the registry can install it by name.
|
|
19
|
+
|
|
18
20
|
> **Prefer not to run it yourself?** [getmcpads.com](https://www.getmcpads.com) is the hosted
|
|
19
21
|
> version of this server, with Google Analytics alongside Meta Ads, Google Ads, TikTok Ads,
|
|
20
22
|
> Pinterest Ads and Search Console behind a single endpoint, hosted OAuth, and cross-platform
|
package/package.json
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getmcpads/google-analytics-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"mcpName": "com.getmcpads/google-analytics",
|
|
4
5
|
"description": "Open-source MCP server for Google Analytics 4. 27 read-only tools across the Data API and Admin API, with personal identifiers redacted before they reach the model. Self-hosted, bring your own credentials.",
|
|
5
6
|
"license": "Apache-2.0",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"main": "./dist/index.js",
|
|
8
9
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"bin": {
|
|
10
|
-
|
|
10
|
+
"bin": {
|
|
11
|
+
"google-analytics-mcp": "dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
11
19
|
"scripts": {
|
|
12
20
|
"build": "tsup",
|
|
13
21
|
"dev": "tsx watch src/cli.ts",
|
|
@@ -32,16 +40,40 @@
|
|
|
32
40
|
"typescript": "^5.7.0",
|
|
33
41
|
"typescript-eslint": "^8.0.0"
|
|
34
42
|
},
|
|
35
|
-
"engines": {
|
|
36
|
-
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=18.0.0"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"dist/",
|
|
48
|
+
"LICENSE",
|
|
49
|
+
"NOTICE",
|
|
50
|
+
"README.md"
|
|
51
|
+
],
|
|
37
52
|
"keywords": [
|
|
38
|
-
"mcp",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
53
|
+
"mcp",
|
|
54
|
+
"mcp-server",
|
|
55
|
+
"model-context-protocol",
|
|
56
|
+
"google-analytics",
|
|
57
|
+
"ga4",
|
|
58
|
+
"google-analytics-4",
|
|
59
|
+
"analytics",
|
|
60
|
+
"data-api",
|
|
61
|
+
"admin-api",
|
|
62
|
+
"claude",
|
|
63
|
+
"chatgpt",
|
|
64
|
+
"cursor",
|
|
65
|
+
"ai-agent"
|
|
41
66
|
],
|
|
42
|
-
"repository": {
|
|
43
|
-
|
|
44
|
-
|
|
67
|
+
"repository": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "git+https://github.com/getmcpads-com/google-analytics-mcp-server.git"
|
|
70
|
+
},
|
|
71
|
+
"homepage": "https://www.getmcpads.com/tools/ga4",
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/getmcpads-com/google-analytics-mcp-server/issues"
|
|
74
|
+
},
|
|
45
75
|
"author": "GetMCPAds (https://www.getmcpads.com)",
|
|
46
|
-
"publishConfig": {
|
|
76
|
+
"publishConfig": {
|
|
77
|
+
"access": "public"
|
|
78
|
+
}
|
|
47
79
|
}
|