-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (74 loc) · 1.78 KB
/
package.json
File metadata and controls
75 lines (74 loc) · 1.78 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
{
"name": "@pouyanafisi/gmail-mcp",
"version": "2.0.0",
"description": "MCP server for Gmail API with OAuth2 authentication and comprehensive email management",
"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",
"setup": "node setup-mcp.js",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"gmail",
"mcp",
"model-context-protocol",
"google-gmail",
"email",
"oauth",
"claude",
"gemini",
"ai",
"automation"
],
"author": "Pouya Nafisi",
"homepage": "https://github.com/pouyanafisi/gmail-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/pouyanafisi/gmail-mcp.git"
},
"bugs": {
"url": "https://github.com/pouyanafisi/gmail-mcp/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"google-auth-library": "^9.4.1",
"googleapis": "^129.0.0",
"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/mime-types": "^2.1.4",
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.17",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"typescript": "^5.3.3",
"vitest": "^1.0.0"
}
}