forked from GongRzhe/Gmail-MCP-Server
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathmcpb-manifest.json
More file actions
66 lines (66 loc) · 2.18 KB
/
Copy pathmcpb-manifest.json
File metadata and controls
66 lines (66 loc) · 2.18 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
{
"manifest_version": "0.3",
"name": "gmail-mcp",
"display_name": "Gmail MCP Server",
"version": "1.2.2",
"description": "Lean Gmail MCP server with auto authentication support (maintained fork of GongRzhe/Gmail-MCP-Server)",
"long_description": "A Model Context Protocol server for Gmail: search, read, send, draft, label, filter, thread and attachment operations, with automatic Google OAuth authentication. Runs locally over stdio. Requires a Google Cloud OAuth client (gcp-oauth.keys.json); run the bundled server once with the `auth` argument (or place keys at ~/.gmail-mcp/gcp-oauth.keys.json) to complete authentication.",
"author": {
"name": "Arty McLabin",
"url": "https://github.com/ArtyMcLabin"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArtyMcLabin/Gmail-MCP-Server"
},
"homepage": "https://github.com/ArtyMcLabin/Gmail-MCP-Server",
"documentation": "https://github.com/ArtyMcLabin/Gmail-MCP-Server#readme",
"support": "https://github.com/ArtyMcLabin/Gmail-MCP-Server/issues",
"keywords": [
"gmail",
"email",
"google",
"oauth",
"mcp",
"model-context-protocol"
],
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
],
"env": {
"GMAIL_OAUTH_PATH": "${user_config.gmail_oauth_path}",
"GMAIL_CREDENTIALS_PATH": "${user_config.gmail_credentials_path}"
}
}
},
"user_config": {
"gmail_oauth_path": {
"type": "file",
"title": "Google OAuth keys file (gcp-oauth.keys.json)",
"description": "Path to your Google Cloud OAuth client keys JSON. Optional - defaults to ~/.gmail-mcp/gcp-oauth.keys.json.",
"required": false
},
"gmail_credentials_path": {
"type": "file",
"title": "Stored Gmail credentials file",
"description": "Path where authenticated Gmail tokens are stored. Optional - defaults to ~/.gmail-mcp/credentials.json.",
"required": false
}
},
"compatibility": {
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=18.0.0"
}
}
}