-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.9 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.9 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
80
81
82
{
"name": "@devdattatalele/gmail-mcp-server",
"version": "2.0.0",
"description": "A robust Gmail MCP server with intelligent authentication, token management, and comprehensive email operations",
"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",
"dev": "tsc --watch",
"prepare": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"gmail",
"mcp",
"model-context-protocol",
"email-automation",
"google-api",
"oauth2",
"claude-desktop",
"claude",
"anthropic",
"ai-integration",
"email-client",
"gmail-api",
"email",
"automation",
"productivity",
"inbox-management",
"email-assistant",
"ai-email",
"typescript",
"nodejs",
"mcp-server",
"gmail-automation",
"email-tools",
"gmail-integration"
],
"author": {
"name": "Devdatta Talele",
"email": "taleledevdatta@gmail.com",
"url": "https://github.com/devdattatalele"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devdattatalele/gmail-mcp-server.git"
},
"bugs": {
"url": "https://github.com/devdattatalele/gmail-mcp-server/issues"
},
"homepage": "https://github.com/devdattatalele/gmail-mcp-server#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"@types/mime-types": "^2.1.4",
"google-auth-library": "^9.4.1",
"googleapis": "^129.0.0",
"mcp-evals": "^1.0.18",
"mime-types": "^3.0.1",
"nodemailer": "^7.0.3",
"open": "^10.0.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.17",
"typescript": "^5.3.3"
}
}