@getmcpads/google-analytics-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 +327 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +4488 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +41 -0
- package/dist/index.js +4471 -0
- package/dist/index.js.map +1 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@getmcpads/google-analytics-mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"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
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"bin": { "google-analytics-mcp": "dist/cli.js" },
|
|
10
|
+
"exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsup",
|
|
13
|
+
"dev": "tsx watch src/cli.ts",
|
|
14
|
+
"doctor": "node scripts/doctor.mjs",
|
|
15
|
+
"start": "node dist/cli.js",
|
|
16
|
+
"test": "tsx --test test/*.test.mjs",
|
|
17
|
+
"lint": "eslint src/",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"prepublishOnly": "npm run build"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
23
|
+
"zod": "^3.24.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@eslint/js": "^9.0.0",
|
|
27
|
+
"@types/node": "^22.0.0",
|
|
28
|
+
"eslint": "^9.0.0",
|
|
29
|
+
"globals": "^15.0.0",
|
|
30
|
+
"tsup": "^8.0.0",
|
|
31
|
+
"tsx": "^4.0.0",
|
|
32
|
+
"typescript": "^5.7.0",
|
|
33
|
+
"typescript-eslint": "^8.0.0"
|
|
34
|
+
},
|
|
35
|
+
"engines": { "node": ">=18.0.0" },
|
|
36
|
+
"files": ["dist/", "LICENSE", "NOTICE", "README.md"],
|
|
37
|
+
"keywords": [
|
|
38
|
+
"mcp", "mcp-server", "model-context-protocol", "google-analytics",
|
|
39
|
+
"ga4", "google-analytics-4", "analytics", "data-api", "admin-api",
|
|
40
|
+
"claude", "chatgpt", "cursor", "ai-agent"
|
|
41
|
+
],
|
|
42
|
+
"repository": { "type": "git", "url": "git+https://github.com/getmcpads-com/google-analytics-mcp-server.git" },
|
|
43
|
+
"homepage": "https://github.com/getmcpads-com/google-analytics-mcp-server#readme",
|
|
44
|
+
"bugs": { "url": "https://github.com/getmcpads-com/google-analytics-mcp-server/issues" },
|
|
45
|
+
"author": "GetMCPAds (https://www.getmcpads.com)",
|
|
46
|
+
"publishConfig": { "access": "public" }
|
|
47
|
+
}
|