Google Calendar MCP Server

by takumi0706
Verified
{ "name": "@takumi0706/google-calendar-mcp", "version": "0.6.3", "description": "Google Calendar MCP server for Claude Desktop integration with enhanced security", "main": "dist/index.js", "bin": { "google-calendar-mcp": "./dist/index.js" }, "files": [ "dist/**/*", "README.md", "LICENSE", "SECURITY.md" ], "scripts": { "build": "tsc", "postbuild": "chmod +x dist/index.js", "start": "node dist/index.js", "dev": "ts-node src/index.ts", "test": "jest", "test:coverage": "jest --coverage", "lint": "eslint . --ext .ts", "format": "prettier --write 'src/**/*.ts'", "prepare": "npm run build || true", "prepublishOnly": "npm test && npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "security": "npm audit" }, "repository": { "type": "git", "url": "git+https://github.com/takumi0706/google-calendar-mcp.git" }, "bugs": { "url": "https://github.com/takumi0706/google-calendar-mcp/issues" }, "homepage": "https://github.com/takumi0706/google-calendar-mcp#readme", "keywords": [ "mcp", "claude", "anthropic", "google-calendar", "calendar", "claude-desktop", "ai-integration", "secure" ], "author": "takumi0706", "license": "MIT", "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/jest": "^29.5.12", "@types/node": "^20.11.25", "@typescript-eslint/eslint-plugin": "^7.1.1", "@typescript-eslint/parser": "^7.1.1", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.8.0", "dotenv": "^16.4.5", "express": "^4.18.2", "express-rate-limit": "^7.1.5", "googleapis": "^148.0.0", "helmet": "^7.1.0", "open": "^10.1.0", "winston": "^3.11.0", "zod": "^3.22.4" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" } }