-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.82 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mcp-google",
"version": "2.3.0",
"description": "The ONLY comprehensive MCP server for Google Workspace - Calendar, Contacts, and Gmail management in Claude, Cursor, Windsurf",
"type": "module",
"bin": {
"mcp-google": "build/index.js"
},
"files": [
"build/",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"cursor",
"windsurf",
"google-calendar",
"google-contacts",
"google-gmail",
"gmail",
"email",
"google-workspace",
"workspace",
"calendar",
"contacts",
"ai",
"llm",
"integration",
"calendar-management",
"contact-management",
"oauth2",
"create-events",
"update-events",
"delete-events",
"people-api",
"gmail-api",
"email-management",
"inbox-management"
],
"repository": {
"type": "git",
"url": "git+https://github.com/199-mcp/mcp-google.git"
},
"bugs": {
"url": "https://github.com/199-mcp/mcp-google/issues"
},
"homepage": "https://github.com/199-mcp/mcp-google#readme",
"author": "199-mcp",
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && node scripts/build.js",
"start": "node build/index.js",
"auth": "node build/auth-server.js",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@modelcontextprotocol/sdk": "^1.0.3",
"esbuild": "^0.25.0",
"express": "^4.18.2",
"google-auth-library": "^9.15.0",
"googleapis": "^144.0.0",
"open": "^7.4.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^20.10.4",
"@vitest/coverage-v8": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^3.1.1"
}
}