-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmcp.json
More file actions
364 lines (364 loc) · 11.7 KB
/
mcp.json
File metadata and controls
364 lines (364 loc) · 11.7 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
{
"schemaVersion": "0.1.0",
"name": "google-workspace-mcp-server",
"version": "1.0.0",
"description": "A production-ready MCP server providing comprehensive Google Workspace integration with Gmail, Drive, Calendar, Sheets, Slides, and Tasks through secure OAuth 2.0 authentication.",
"author": {
"name": "3xCaffeine",
"url": "https://github.com/3xCaffeine"
},
"homepage": "https://github.com/3xCaffeine/mcp-server",
"repository": {
"type": "git",
"url": "https://github.com/3xCaffeine/mcp-server.git"
},
"license": "MIT",
"keywords": [
"google-workspace",
"gmail",
"google-drive",
"google-calendar",
"google-sheets",
"google-slides",
"google-tasks",
"oauth2",
"productivity",
"automation",
"email",
"documents",
"spreadsheets",
"presentations"
],
"categories": [
"productivity",
"google",
"email",
"calendar",
"documents",
"automation"
],
"server": {
"executable": "node",
"args": [
"server.js"
],
"env": {
"NODE_ENV": "production"
}
},
"capabilities": {
"tools": {
"listChanged": false
},
"resources": {
"subscribe": false,
"listChanged": false
},
"prompts": {
"listChanged": false
},
"logging": {}
},
"tools": [
{
"name": "echo",
"description": "Echo a message back to the user"
},
{
"name": "get_user_info",
"description": "Get information about the authenticated user"
},
{
"name": "roll_dice",
"description": "Roll an N-sided die"
},
{
"name": "search_gmail_emails",
"description": "Search emails using Gmail query syntax"
},
{
"name": "read_gmail_email",
"description": "Read an email by its message ID"
},
{
"name": "modify_gmail_email",
"description": "Modify email labels"
},
{
"name": "delete_gmail_email",
"description": "Delete an email by its message ID"
},
{
"name": "list_gmail_labels",
"description": "List all Gmail labels"
},
{
"name": "create_gmail_label",
"description": "Create a new Gmail label"
},
{
"name": "update_gmail_label",
"description": "Update an existing Gmail label"
},
{
"name": "delete_gmail_label",
"description": "Delete a Gmail label"
},
{
"name": "get_or_create_gmail_label",
"description": "Get an existing label or create it if it doesn't exist"
},
{
"name": "send_gmail_email",
"description": "Send an email using Gmail API with advanced options"
},
{
"name": "draft_gmail_email",
"description": "Create a draft email using Gmail API"
},
{
"name": "batch_modify_gmail_emails",
"description": "Modify multiple emails at once"
},
{
"name": "batch_delete_gmail_emails",
"description": "Delete multiple emails at once"
},
{
"name": "search_drive_files",
"description": "Search files and folders in Google Drive using query syntax"
},
{
"name": "get_drive_file_content",
"description": "Retrieve the content of a specific Google Drive file by ID"
},
{
"name": "list_drive_items",
"description": "List files and folders in a specific Google Drive folder"
},
{
"name": "create_drive_file",
"description": "Create a new file in Google Drive, with content or from a URL"
},
{
"name": "list_calendars",
"description": "List all calendars accessible to the authenticated user"
},
{
"name": "get_events",
"description": "List events from a specified Google Calendar within a time range"
},
{
"name": "create_event",
"description": "Create a new event in a Google Calendar"
},
{
"name": "modify_event",
"description": "Modify an existing event in a Google Calendar"
},
{
"name": "delete_event",
"description": "Delete an event from a Google Calendar"
},
{
"name": "get_event",
"description": "Get details of a single event by its ID from a Google Calendar"
},
{
"name": "list_spreadsheets",
"description": "List spreadsheets from Google Drive that the user has access to"
},
{
"name": "get_spreadsheet_info",
"description": "Get information about a specific spreadsheet including its sheets"
},
{
"name": "read_sheet_values",
"description": "Read values from a specific range in a Google Sheet"
},
{
"name": "modify_sheet_values",
"description": "Modify values in a specific range of a Google Sheet - can write, update, or clear values"
},
{
"name": "create_spreadsheet",
"description": "Create a new Google Spreadsheet"
},
{
"name": "create_sheet",
"description": "Create a new sheet within an existing spreadsheet"
},
{
"name": "create_presentation",
"description": "Create a new Google Slides presentation"
},
{
"name": "get_presentation",
"description": "Get details about a Google Slides presentation"
},
{
"name": "batch_update_presentation",
"description": "Apply batch updates to a Google Slides presentation"
},
{
"name": "get_page",
"description": "Get details about a specific page (slide) in a presentation"
},
{
"name": "get_page_thumbnail",
"description": "Generate a thumbnail URL for a specific page (slide) in a presentation"
},
{
"name": "list_task_lists",
"description": "List all task lists for the user"
},
{
"name": "get_task_list",
"description": "Get details of a specific task list"
},
{
"name": "create_task_list",
"description": "Create a new task list"
},
{
"name": "update_task_list",
"description": "Update an existing task list"
},
{
"name": "delete_task_list",
"description": "Delete a task list. Note: This will also delete all tasks in the list"
},
{
"name": "list_tasks",
"description": "List all tasks in a specific task list"
},
{
"name": "get_task",
"description": "Get details of a specific task"
},
{
"name": "create_task",
"description": "Create a new task in a task list"
},
{
"name": "update_task",
"description": "Update an existing task"
},
{
"name": "delete_task",
"description": "Delete a task from a task list"
},
{
"name": "move_task",
"description": "Move a task to a different position or parent within the same list, or to a different list"
},
{
"name": "clear_completed_tasks",
"description": "Clear all completed tasks from a task list. The tasks will be marked as hidden"
}
],
"configuration": {
"required": [
{
"name": "GOOGLE_CLIENT_ID",
"description": "Google OAuth 2.0 Client ID from Google Cloud Console"
},
{
"name": "GOOGLE_CLIENT_SECRET",
"description": "Google OAuth 2.0 Client Secret from Google Cloud Console"
},
{
"name": "BETTER_AUTH_URL",
"description": "Base URL for Better Auth (e.g., https://your-domain.com)"
},
{
"name": "BETTER_AUTH_SECRET",
"description": "Secret key for Better Auth session management"
},
{
"name": "DATABASE_URL",
"description": "PostgreSQL database connection string"
}
],
"optional": [
{
"name": "PGHOST",
"description": "PostgreSQL host (alternative to DATABASE_URL)"
},
{
"name": "PGUSER",
"description": "PostgreSQL username (alternative to DATABASE_URL)"
},
{
"name": "PGPASSWORD",
"description": "PostgreSQL password (alternative to DATABASE_URL)"
},
{
"name": "PGDATABASE",
"description": "PostgreSQL database name (alternative to DATABASE_URL)"
},
{
"name": "PGPORT",
"description": "PostgreSQL port (alternative to DATABASE_URL, default: 5432)"
}
]
},
"authentication": {
"type": "oauth2",
"provider": "google",
"scopes": [
"openid",
"email",
"profile",
"https://www.googleapis.com/auth/gmail.modify",
"https://www.googleapis.com/auth/gmail.settings.basic",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/gmail.send",
"https://mail.google.com/",
"https://www.googleapis.com/auth/gmail.compose",
"https://www.googleapis.com/auth/drive.readonly",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/calendar.events",
"https://www.googleapis.com/auth/calendar.readonly",
"https://www.googleapis.com/auth/calendar.events.readonly",
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/spreadsheets.readonly",
"https://www.googleapis.com/auth/presentations",
"https://www.googleapis.com/auth/presentations.readonly",
"https://www.googleapis.com/auth/tasks",
"https://www.googleapis.com/auth/tasks.readonly"
]
},
"deployment": {
"healthCheck": "/api/health",
"dependencies": {
"node": ">=22.0.0",
"postgresql": ">=13.0.0"
},
"services": [
{
"name": "web",
"build": {
"command": "npm run build"
},
"start": {
"command": "npm start"
},
"healthCheck": {
"path": "/api/health",
"interval": 30,
"timeout": 10,
"retries": 3
}
},
{
"name": "database",
"type": "postgresql",
"version": ">=13.0.0"
}
]
}
}