package.json•1.61 kB
{
"name": "mcp-server-google-analytics",
"version": "1.1.0",
"description": "Google Analytics MCP server for accessing web analytics data",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest",
"lint": "biome lint src/",
"format": "biome format src/ --write",
"check": "biome check src/ --apply",
"prepare": "husky"
},
"dependencies": {
"@google-analytics/data": "^4.0.0",
"@modelcontextprotocol/sdk": "^1.0.1",
"dotenv": "^17.2.0",
"googleapis": "^126.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@types/node": "^20.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.7",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"keywords": [
"mcp",
"google-analytics",
"analytics",
"server"
],
"author": "Ru Chen Chong <hello@ruchern.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruchernchong/mcp-server-google-analytics"
},
"bin": {
"mcp-server-google-analytics": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}