@apteva/integrations 0.3.47 → 0.3.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/http-executor.d.ts +1 -0
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +128 -5
- package/dist/http-executor.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/debugbear.json +194 -0
- package/src/apps/deepgram.json +347 -0
- package/src/apps/disify.json +47 -0
- package/src/apps/gmail.json +478 -1
- package/src/apps/google-ads.json +1 -1
- package/src/apps/google-docs.json +382 -78
- package/src/apps/google-drive.json +333 -28
- package/src/apps/google-sheets.json +1 -1
- package/src/apps/heygen.json +713 -516
- package/src/apps/omnikit-intelligence.json +22 -7
- package/src/apps/omnikit-sites.json +246 -0
- package/src/apps/pagespeed-insights.json +66 -0
- package/src/apps/socialcast.json +1 -1
- package/src/apps/webpagetest.json +159 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"slug": "google-drive",
|
|
3
3
|
"name": "Google Drive",
|
|
4
4
|
"description": "MCP server for Google Drive file storage and management operations",
|
|
5
|
-
"logo": "https://
|
|
5
|
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/1/12/Google_Drive_icon_%282020%29.svg",
|
|
6
6
|
"categories": [
|
|
7
7
|
"google-drive",
|
|
8
8
|
"file-storage",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"tools": [
|
|
59
59
|
{
|
|
60
60
|
"name": "list_files",
|
|
61
|
-
"description": "List files in Google Drive with optional folder filter and sorting",
|
|
61
|
+
"description": "List files in Google Drive with optional folder filter and sorting. Call with no parameters to list recent files, or use 'q' to filter.",
|
|
62
62
|
"method": "GET",
|
|
63
63
|
"path": "/drive/v3/files",
|
|
64
64
|
"input_schema": {
|
|
@@ -66,18 +66,15 @@
|
|
|
66
66
|
"properties": {
|
|
67
67
|
"q": {
|
|
68
68
|
"type": "string",
|
|
69
|
-
"description": "Search query using Drive query syntax. Examples: \"'FOLDER_ID' in parents\" to list folder contents, \"mimeType='application/vnd.google-apps.spreadsheet'\" to find sheets, \"name contains 'report'\" to search by name, \"modifiedTime > '2025-01-01'\" for recent files"
|
|
69
|
+
"description": "Search query using Drive query syntax. Examples: \"'FOLDER_ID' in parents\" to list folder contents, \"mimeType='application/vnd.google-apps.spreadsheet'\" to find sheets, \"name contains 'report'\" to search by name, \"modifiedTime > '2025-01-01'\" for recent files, \"trashed=true\" to list trashed files"
|
|
70
70
|
},
|
|
71
71
|
"pageSize": {
|
|
72
72
|
"type": "integer",
|
|
73
|
-
"description": "Maximum number of files to return (1-1000)"
|
|
74
|
-
"default": 100,
|
|
75
|
-
"maximum": 1000
|
|
73
|
+
"description": "Maximum number of files to return (1-1000). Default 100."
|
|
76
74
|
},
|
|
77
75
|
"orderBy": {
|
|
78
76
|
"type": "string",
|
|
79
|
-
"description": "Sort order. Options: createdTime, folder, modifiedByMeTime, modifiedTime, name, quotaBytesUsed, recency, sharedWithMeTime, starred, viewedByMeTime. Append ' desc' for descending."
|
|
80
|
-
"default": "modifiedTime desc"
|
|
77
|
+
"description": "Sort order. Options: createdTime, folder, modifiedByMeTime, modifiedTime, name, quotaBytesUsed, recency, sharedWithMeTime, starred, viewedByMeTime. Append ' desc' for descending."
|
|
81
78
|
},
|
|
82
79
|
"pageToken": {
|
|
83
80
|
"type": "string",
|
|
@@ -85,20 +82,35 @@
|
|
|
85
82
|
},
|
|
86
83
|
"fields": {
|
|
87
84
|
"type": "string",
|
|
88
|
-
"description": "Fields to include
|
|
89
|
-
"default": "nextPageToken,files(id,name,mimeType,size,modifiedTime,parents,webViewLink,createdTime)"
|
|
85
|
+
"description": "Fields to include. Example: 'nextPageToken,files(id,name,mimeType,size,modifiedTime,webViewLink)'. Omit for default fields."
|
|
90
86
|
},
|
|
91
87
|
"spaces": {
|
|
92
88
|
"type": "string",
|
|
93
|
-
"description": "Spaces to search: drive
|
|
94
|
-
|
|
89
|
+
"description": "Spaces to search: 'drive' (default) or 'appDataFolder'"
|
|
90
|
+
},
|
|
91
|
+
"corpora": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"description": "Source of files. 'user' (default), 'domain', 'drive' (specific shared drive — requires driveId), or 'allDrives' (requires includeItemsFromAllDrives=true and supportsAllDrives=true).",
|
|
94
|
+
"enum": ["user", "domain", "drive", "allDrives"]
|
|
95
|
+
},
|
|
96
|
+
"driveId": {
|
|
97
|
+
"type": "string",
|
|
98
|
+
"description": "ID of the shared drive to search (only when corpora='drive')"
|
|
99
|
+
},
|
|
100
|
+
"includeItemsFromAllDrives": {
|
|
101
|
+
"type": "boolean",
|
|
102
|
+
"description": "Include files from shared drives. Must set corpora='allDrives' and supportsAllDrives=true when using this."
|
|
103
|
+
},
|
|
104
|
+
"supportsAllDrives": {
|
|
105
|
+
"type": "boolean",
|
|
106
|
+
"description": "Whether the request supports shared drives. Required when accessing shared drive files."
|
|
95
107
|
}
|
|
96
108
|
}
|
|
97
109
|
}
|
|
98
110
|
},
|
|
99
111
|
{
|
|
100
112
|
"name": "get_file",
|
|
101
|
-
"description": "Get metadata for a specific file by ID",
|
|
113
|
+
"description": "Get metadata for a specific file by ID. Returns file name, MIME type, size, sharing links (webViewLink for browser, webContentLink for direct download), owners, and permissions.",
|
|
102
114
|
"method": "GET",
|
|
103
115
|
"path": "/drive/v3/files/{fileId}",
|
|
104
116
|
"input_schema": {
|
|
@@ -110,13 +122,34 @@
|
|
|
110
122
|
},
|
|
111
123
|
"fields": {
|
|
112
124
|
"type": "string",
|
|
113
|
-
"description": "Fields to return"
|
|
114
|
-
"default": "id,name,mimeType,size,modifiedTime,parents,webViewLink,createdTime,owners,permissions,description"
|
|
125
|
+
"description": "Fields to return. Example: 'id,name,mimeType,size,modifiedTime,webViewLink,webContentLink,owners,description'. Omit for default fields."
|
|
115
126
|
},
|
|
116
127
|
"supportsAllDrives": {
|
|
117
128
|
"type": "boolean",
|
|
118
|
-
"description": "
|
|
119
|
-
|
|
129
|
+
"description": "Set to true to access files in shared drives"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"required": [
|
|
133
|
+
"fileId"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "download_file",
|
|
139
|
+
"description": "Download the binary content of a non-Google Workspace file (images, audio, video, PDFs, etc.). For Google Workspace files (Docs, Sheets, Slides), use export_file instead.",
|
|
140
|
+
"method": "GET",
|
|
141
|
+
"path": "/drive/v3/files/{fileId}",
|
|
142
|
+
"input_schema": {
|
|
143
|
+
"type": "object",
|
|
144
|
+
"properties": {
|
|
145
|
+
"fileId": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "ID of the file to download"
|
|
148
|
+
},
|
|
149
|
+
"alt": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"description": "Must be 'media' to download file content",
|
|
152
|
+
"default": "media"
|
|
120
153
|
}
|
|
121
154
|
},
|
|
122
155
|
"required": [
|
|
@@ -126,7 +159,7 @@
|
|
|
126
159
|
},
|
|
127
160
|
{
|
|
128
161
|
"name": "search_files",
|
|
129
|
-
"description": "Search for files in Google Drive by name, content, type, or other criteria",
|
|
162
|
+
"description": "Search for files in Google Drive by name, content, type, or other criteria. Returns file IDs, names, links, and metadata.",
|
|
130
163
|
"method": "GET",
|
|
131
164
|
"path": "/drive/v3/files",
|
|
132
165
|
"input_schema": {
|
|
@@ -134,23 +167,19 @@
|
|
|
134
167
|
"properties": {
|
|
135
168
|
"q": {
|
|
136
169
|
"type": "string",
|
|
137
|
-
"description": "Drive search query. Examples: \"name contains 'budget'\", \"fullText contains 'quarterly'\", \"mimeType='application/vnd.google-apps.spreadsheet'\", \"modifiedTime > '2025-01-01T00:00:00'\", \"'me' in owners\". Combine with 'and'/'or'."
|
|
170
|
+
"description": "Drive search query. Examples: \"name contains 'budget'\", \"fullText contains 'quarterly'\", \"mimeType='application/vnd.google-apps.spreadsheet'\", \"mimeType contains 'audio/'\", \"mimeType contains 'video/'\", \"mimeType='application/pdf'\", \"modifiedTime > '2025-01-01T00:00:00'\", \"'me' in owners\", \"sharedWithMe=true\", \"starred=true\". Combine with 'and'/'or'."
|
|
138
171
|
},
|
|
139
172
|
"pageSize": {
|
|
140
173
|
"type": "integer",
|
|
141
|
-
"description": "Max results (1-1000)"
|
|
142
|
-
"default": 50,
|
|
143
|
-
"maximum": 1000
|
|
174
|
+
"description": "Max results (1-1000). Default 50."
|
|
144
175
|
},
|
|
145
176
|
"orderBy": {
|
|
146
177
|
"type": "string",
|
|
147
|
-
"description": "Sort order"
|
|
148
|
-
"default": "modifiedTime desc"
|
|
178
|
+
"description": "Sort order. Example: 'modifiedTime desc', 'name'"
|
|
149
179
|
},
|
|
150
180
|
"fields": {
|
|
151
181
|
"type": "string",
|
|
152
|
-
"description": "Fields to return"
|
|
153
|
-
"default": "files(id,name,mimeType,size,modifiedTime,webViewLink,parents)"
|
|
182
|
+
"description": "Fields to return. Example: 'files(id,name,mimeType,size,modifiedTime,webViewLink,webContentLink)'. Omit for default fields."
|
|
154
183
|
}
|
|
155
184
|
},
|
|
156
185
|
"required": [
|
|
@@ -188,6 +217,48 @@
|
|
|
188
217
|
]
|
|
189
218
|
}
|
|
190
219
|
},
|
|
220
|
+
{
|
|
221
|
+
"name": "update_file",
|
|
222
|
+
"description": "Update a file's metadata (name, description, starred, etc.) and optionally its content",
|
|
223
|
+
"method": "PATCH",
|
|
224
|
+
"path": "/drive/v3/files/{fileId}",
|
|
225
|
+
"input_schema": {
|
|
226
|
+
"type": "object",
|
|
227
|
+
"properties": {
|
|
228
|
+
"fileId": {
|
|
229
|
+
"type": "string",
|
|
230
|
+
"description": "ID of the file to update"
|
|
231
|
+
},
|
|
232
|
+
"name": {
|
|
233
|
+
"type": "string",
|
|
234
|
+
"description": "New name for the file"
|
|
235
|
+
},
|
|
236
|
+
"description": {
|
|
237
|
+
"type": "string",
|
|
238
|
+
"description": "New description for the file"
|
|
239
|
+
},
|
|
240
|
+
"starred": {
|
|
241
|
+
"type": "boolean",
|
|
242
|
+
"description": "Whether to star the file"
|
|
243
|
+
},
|
|
244
|
+
"trashed": {
|
|
245
|
+
"type": "boolean",
|
|
246
|
+
"description": "Whether to move the file to trash (true) or restore it (false)"
|
|
247
|
+
},
|
|
248
|
+
"addParents": {
|
|
249
|
+
"type": "string",
|
|
250
|
+
"description": "Comma-separated parent folder IDs to add"
|
|
251
|
+
},
|
|
252
|
+
"removeParents": {
|
|
253
|
+
"type": "string",
|
|
254
|
+
"description": "Comma-separated parent folder IDs to remove"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
"required": [
|
|
258
|
+
"fileId"
|
|
259
|
+
]
|
|
260
|
+
}
|
|
261
|
+
},
|
|
191
262
|
{
|
|
192
263
|
"name": "share_file",
|
|
193
264
|
"description": "Share a file or folder by creating a permission. Use type='anyone' for public link sharing.",
|
|
@@ -237,9 +308,131 @@
|
|
|
237
308
|
]
|
|
238
309
|
}
|
|
239
310
|
},
|
|
311
|
+
{
|
|
312
|
+
"name": "list_permissions",
|
|
313
|
+
"description": "List all permissions (who has access) for a file or folder",
|
|
314
|
+
"method": "GET",
|
|
315
|
+
"path": "/drive/v3/files/{fileId}/permissions",
|
|
316
|
+
"input_schema": {
|
|
317
|
+
"type": "object",
|
|
318
|
+
"properties": {
|
|
319
|
+
"fileId": {
|
|
320
|
+
"type": "string",
|
|
321
|
+
"description": "ID of the file or folder"
|
|
322
|
+
},
|
|
323
|
+
"fields": {
|
|
324
|
+
"type": "string",
|
|
325
|
+
"description": "Fields to return",
|
|
326
|
+
"default": "permissions(id,type,role,emailAddress,displayName,domain,expirationTime,deleted)"
|
|
327
|
+
},
|
|
328
|
+
"supportsAllDrives": {
|
|
329
|
+
"type": "boolean",
|
|
330
|
+
"description": "Support shared drives",
|
|
331
|
+
"default": true
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"required": [
|
|
335
|
+
"fileId"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "update_permission",
|
|
341
|
+
"description": "Update an existing permission on a file (e.g. change role from reader to writer)",
|
|
342
|
+
"method": "PATCH",
|
|
343
|
+
"path": "/drive/v3/files/{fileId}/permissions/{permissionId}",
|
|
344
|
+
"input_schema": {
|
|
345
|
+
"type": "object",
|
|
346
|
+
"properties": {
|
|
347
|
+
"fileId": {
|
|
348
|
+
"type": "string",
|
|
349
|
+
"description": "ID of the file or folder"
|
|
350
|
+
},
|
|
351
|
+
"permissionId": {
|
|
352
|
+
"type": "string",
|
|
353
|
+
"description": "ID of the permission to update"
|
|
354
|
+
},
|
|
355
|
+
"role": {
|
|
356
|
+
"type": "string",
|
|
357
|
+
"description": "New role",
|
|
358
|
+
"enum": [
|
|
359
|
+
"reader",
|
|
360
|
+
"writer",
|
|
361
|
+
"commenter",
|
|
362
|
+
"owner"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"expirationTime": {
|
|
366
|
+
"type": "string",
|
|
367
|
+
"description": "Optional expiration time in RFC 3339 format"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"required": [
|
|
371
|
+
"fileId",
|
|
372
|
+
"permissionId",
|
|
373
|
+
"role"
|
|
374
|
+
]
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"name": "delete_permission",
|
|
379
|
+
"description": "Remove a specific permission from a file (revoke someone's access)",
|
|
380
|
+
"method": "DELETE",
|
|
381
|
+
"path": "/drive/v3/files/{fileId}/permissions/{permissionId}",
|
|
382
|
+
"input_schema": {
|
|
383
|
+
"type": "object",
|
|
384
|
+
"properties": {
|
|
385
|
+
"fileId": {
|
|
386
|
+
"type": "string",
|
|
387
|
+
"description": "ID of the file or folder"
|
|
388
|
+
},
|
|
389
|
+
"permissionId": {
|
|
390
|
+
"type": "string",
|
|
391
|
+
"description": "ID of the permission to delete"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"required": [
|
|
395
|
+
"fileId",
|
|
396
|
+
"permissionId"
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "trash_file",
|
|
402
|
+
"description": "Move a file or folder to the trash (can be restored later, unlike delete_file which is permanent)",
|
|
403
|
+
"method": "PATCH",
|
|
404
|
+
"path": "/drive/v3/files/{fileId}",
|
|
405
|
+
"input_schema": {
|
|
406
|
+
"type": "object",
|
|
407
|
+
"properties": {
|
|
408
|
+
"fileId": {
|
|
409
|
+
"type": "string",
|
|
410
|
+
"description": "ID of the file or folder to trash"
|
|
411
|
+
},
|
|
412
|
+
"trashed": {
|
|
413
|
+
"type": "boolean",
|
|
414
|
+
"description": "Set to true to trash, false to restore from trash",
|
|
415
|
+
"default": true
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"required": [
|
|
419
|
+
"fileId"
|
|
420
|
+
]
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"name": "empty_trash",
|
|
425
|
+
"description": "Permanently delete all files in the user's trash",
|
|
426
|
+
"method": "DELETE",
|
|
427
|
+
"path": "/drive/v3/files/trash",
|
|
428
|
+
"input_schema": {
|
|
429
|
+
"type": "object",
|
|
430
|
+
"properties": {}
|
|
431
|
+
}
|
|
432
|
+
},
|
|
240
433
|
{
|
|
241
434
|
"name": "delete_file",
|
|
242
|
-
"description": "Permanently delete a file or folder from Google Drive (skips trash)",
|
|
435
|
+
"description": "Permanently delete a file or folder from Google Drive (skips trash, cannot be undone). Use trash_file for recoverable deletion.",
|
|
243
436
|
"method": "DELETE",
|
|
244
437
|
"path": "/drive/v3/files/{fileId}",
|
|
245
438
|
"input_schema": {
|
|
@@ -247,7 +440,7 @@
|
|
|
247
440
|
"properties": {
|
|
248
441
|
"fileId": {
|
|
249
442
|
"type": "string",
|
|
250
|
-
"description": "ID of the file or folder to delete"
|
|
443
|
+
"description": "ID of the file or folder to permanently delete"
|
|
251
444
|
}
|
|
252
445
|
},
|
|
253
446
|
"required": [
|
|
@@ -357,6 +550,118 @@
|
|
|
357
550
|
]
|
|
358
551
|
}
|
|
359
552
|
},
|
|
553
|
+
{
|
|
554
|
+
"name": "create_comment",
|
|
555
|
+
"description": "Add a comment to a file in Google Drive",
|
|
556
|
+
"method": "POST",
|
|
557
|
+
"path": "/drive/v3/files/{fileId}/comments",
|
|
558
|
+
"input_schema": {
|
|
559
|
+
"type": "object",
|
|
560
|
+
"properties": {
|
|
561
|
+
"fileId": {
|
|
562
|
+
"type": "string",
|
|
563
|
+
"description": "ID of the file to comment on"
|
|
564
|
+
},
|
|
565
|
+
"content": {
|
|
566
|
+
"type": "string",
|
|
567
|
+
"description": "The text content of the comment"
|
|
568
|
+
},
|
|
569
|
+
"anchor": {
|
|
570
|
+
"type": "string",
|
|
571
|
+
"description": "Optional anchor region for the comment (JSON string)"
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"required": [
|
|
575
|
+
"fileId",
|
|
576
|
+
"content"
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "list_comments",
|
|
582
|
+
"description": "List all comments on a file",
|
|
583
|
+
"method": "GET",
|
|
584
|
+
"path": "/drive/v3/files/{fileId}/comments",
|
|
585
|
+
"input_schema": {
|
|
586
|
+
"type": "object",
|
|
587
|
+
"properties": {
|
|
588
|
+
"fileId": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"description": "ID of the file"
|
|
591
|
+
},
|
|
592
|
+
"pageSize": {
|
|
593
|
+
"type": "integer",
|
|
594
|
+
"description": "Max comments to return (1-100)",
|
|
595
|
+
"default": 20,
|
|
596
|
+
"maximum": 100
|
|
597
|
+
},
|
|
598
|
+
"includeDeleted": {
|
|
599
|
+
"type": "boolean",
|
|
600
|
+
"description": "Include deleted comments",
|
|
601
|
+
"default": false
|
|
602
|
+
},
|
|
603
|
+
"fields": {
|
|
604
|
+
"type": "string",
|
|
605
|
+
"description": "Fields to return",
|
|
606
|
+
"default": "comments(id,content,author,createdTime,modifiedTime,resolved,replies)"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"required": [
|
|
610
|
+
"fileId"
|
|
611
|
+
]
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "list_revisions",
|
|
616
|
+
"description": "List the revision history of a file (version history)",
|
|
617
|
+
"method": "GET",
|
|
618
|
+
"path": "/drive/v3/files/{fileId}/revisions",
|
|
619
|
+
"input_schema": {
|
|
620
|
+
"type": "object",
|
|
621
|
+
"properties": {
|
|
622
|
+
"fileId": {
|
|
623
|
+
"type": "string",
|
|
624
|
+
"description": "ID of the file"
|
|
625
|
+
},
|
|
626
|
+
"pageSize": {
|
|
627
|
+
"type": "integer",
|
|
628
|
+
"description": "Max revisions to return (1-1000)",
|
|
629
|
+
"default": 100,
|
|
630
|
+
"maximum": 1000
|
|
631
|
+
},
|
|
632
|
+
"fields": {
|
|
633
|
+
"type": "string",
|
|
634
|
+
"description": "Fields to return",
|
|
635
|
+
"default": "revisions(id,modifiedTime,lastModifyingUser,size,mimeType,keepForever)"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
"required": [
|
|
639
|
+
"fileId"
|
|
640
|
+
]
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "generate_file_ids",
|
|
645
|
+
"description": "Pre-allocate file IDs for uploads. Useful when you need the file ID before creating the file.",
|
|
646
|
+
"method": "GET",
|
|
647
|
+
"path": "/drive/v3/files/generateIds",
|
|
648
|
+
"input_schema": {
|
|
649
|
+
"type": "object",
|
|
650
|
+
"properties": {
|
|
651
|
+
"count": {
|
|
652
|
+
"type": "integer",
|
|
653
|
+
"description": "Number of IDs to generate (1-1000)",
|
|
654
|
+
"default": 1,
|
|
655
|
+
"maximum": 1000
|
|
656
|
+
},
|
|
657
|
+
"space": {
|
|
658
|
+
"type": "string",
|
|
659
|
+
"description": "The space for the IDs",
|
|
660
|
+
"default": "drive"
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
},
|
|
360
665
|
{
|
|
361
666
|
"name": "get_about",
|
|
362
667
|
"description": "Get information about the user's Google Drive (storage quota, user info)",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"slug": "google-sheets",
|
|
3
3
|
"name": "Google Sheets",
|
|
4
4
|
"description": "Google Sheets API v4 \u2014 read, write, append, clear, and batch-mutate spreadsheets. Includes the generic spreadsheets:batchUpdate endpoint which exposes every formatting / sheet-management / find-replace operation Google supports.",
|
|
5
|
-
"logo": "https://
|
|
5
|
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/3/30/Google_Sheets_logo_%282014-2020%29.svg",
|
|
6
6
|
"categories": [
|
|
7
7
|
"spreadsheets",
|
|
8
8
|
"google",
|