Google Calendar MCP Server

by am2rican5
Verified
{ "name": "mcp-google-calendar", "version": "0.0.5", "description": "MCP server for interacting with Google Calendar", "license": "MIT", "author": "am2rican5", "homepage": "https://github.com/am2rican5/mcp-google-calendar", "keywords": [ "mcp", "google", "calendar", "typescript" ], "module": "src/index.ts", "type": "module", "bin": { "mcp-google-calendar": "./dist/index.js" }, "files": [ "dist" ], "scripts": { "build": "tsc && shx chmod +x dist/*.js", "prepare": "npm run build", "watch": "tsc --watch", "start": "node dist/index.js", "start:sse": "node dist/index.js --sse" }, "devDependencies": { "@types/express": "^5.0.0", "shx": "^0.4.0" }, "peerDependencies": { "typescript": "^5.8.2" }, "dependencies": { "@google-cloud/local-auth": "^3.0.1", "@modelcontextprotocol/sdk": "^1.7.0", "dotenv": "^16.4.5", "express": "^4.21.2", "googleapis": "^146.0.0" } }