-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 KB
/
package.json
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
{
"name": "@gongrzhe/server-gmail-autoauth-mcp",
"version": "1.0.0",
"description": "Gmail MCP server with auto authentication support",
"type": "module",
"main": "dist/index.js",
"bin": {
"gmail-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"auth": "node dist/index.js auth",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"gmail",
"mcp",
"cursor",
"ai",
"oauth",
"model-context-protocol",
"google-gmail",
"claude",
"auto-auth"
],
"author": "gongrzhe",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/gongrzhe/server-gmail-autoauth-mcp.git"
},
"bugs": {
"url": "https://github.com/gongrzhe/server-gmail-autoauth-mcp/issues"
},
"homepage": "https://github.com/gongrzhe/server-gmail-autoauth-mcp#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"googleapis": "^129.0.0",
"google-auth-library": "^9.4.1",
"open": "^10.0.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
}
}