gogcli-mcp-drive 2.7.1 → 2.18.0
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +1 -0
- package/SKILL.md +1 -0
- package/dist/index.js +20051 -19610
- package/manifest.json +29 -1
- package/package.json +3 -2
- package/server.json +2 -2
- package/src/index.ts +7 -9
- package/src/tools/drive-extra.ts +37 -4
- package/tests/tools/drive-extra.test.ts +127 -69
- package/tsconfig.json +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "Extended Google Drive for Claude via gogcli — auth + full Drive support (upload, download, permissions, comments, shared drives)",
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.18.0"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
13
13
|
{
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"displayName": "gogcli (Drive)",
|
|
16
16
|
"source": "./",
|
|
17
17
|
"description": "Extended Google Drive for Claude via gogcli — auth + full Drive support (upload, download, permissions, comments, shared drives)",
|
|
18
|
-
"version": "2.
|
|
18
|
+
"version": "2.18.0",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gogcli-mcp-drive",
|
|
3
3
|
"displayName": "gogcli (Drive)",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.18.0",
|
|
5
5
|
"description": "Extended Google Drive for Claude via gogcli — auth + full Drive support (upload, download, permissions, comments, shared drives)",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Chris Hall",
|
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ Plus 5 auth tools and 9 base Drive tools (ls, search, get, mkdir, rename, move,
|
|
|
52
52
|
|------|-------------|
|
|
53
53
|
| `gog_drive_download` | Download a file (exports Google Docs formats: pdf, docx, xlsx, etc.) |
|
|
54
54
|
| `gog_drive_upload` | Upload a local file, optionally replacing an existing file or converting to Google format |
|
|
55
|
+
| `gog_drive_sync_push` | Recursively push a local directory's contents into a Drive folder (additive; no remote deletes) |
|
|
55
56
|
| `gog_drive_copy` | Copy a file to a new file with the given name |
|
|
56
57
|
| `gog_drive_url` | Print shareable web URLs for one or more files |
|
|
57
58
|
| `gog_drive_permissions` | List permissions on a file |
|
package/SKILL.md
CHANGED
|
@@ -36,6 +36,7 @@ Extended Google Drive MCP server via [gogcli](https://github.com/openclaw/gogcli
|
|
|
36
36
|
|------|-------------|
|
|
37
37
|
| `gog_drive_download` | Download a file (Google Docs → pdf/docx/xlsx/etc.) |
|
|
38
38
|
| `gog_drive_upload` | Upload a local file, replace existing, or convert to Google format |
|
|
39
|
+
| `gog_drive_sync_push` | Recursively push a local directory into a Drive folder (additive; no remote deletes) |
|
|
39
40
|
| `gog_drive_copy` | Copy a file to a new file |
|
|
40
41
|
| `gog_drive_url` | Print shareable URLs for one or more files |
|
|
41
42
|
| `gog_drive_permissions` | List permissions on a file |
|