-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "@razroo/gmail-mcp",
"version": "1.8.0",
"description": "Gmail MCP - Provides complete Gmail API access with file-based OAuth2 authentication",
"type": "module",
"bin": {
"gmail-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"auth": "node ./dist/index.js auth",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.16.0",
"@smithery/sdk": "1.4.3",
"google-auth-library": "9.15.1",
"googleapis": "129.0.0",
"open": "9.1.0",
"ts-node": "10.9.2",
"zod": "3.22.4"
},
"devDependencies": {
"@babel/core": "7.27.1",
"@babel/preset-env": "7.27.2",
"@babel/preset-typescript": "7.27.1",
"@changesets/cli": "2.29.4",
"@types/jest": "29.5.14",
"@types/node": "20.17.27",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"typescript": "5.8.2"
},
"keywords": [
"gmail",
"mcp",
"claude",
"anthropic",
"email"
],
"author": "Razroo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/razroo/gmail-mcp"
},
"engines": {
"node": ">=18.0.0"
}
}