gogcli-mcp-drive 2.0.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/README.md ADDED
@@ -0,0 +1,69 @@
1
+ # gogcli-mcp-drive
2
+
3
+ > [!WARNING]
4
+ > **AI-developed project.** This codebase was built and is actively maintained by [Claude Code](https://www.anthropic.com/claude). Review all code and tool permissions before use.
5
+
6
+ Extended Google Drive [MCP](https://modelcontextprotocol.io) server via [gogcli](https://github.com/steipete/gogcli). Includes auth tools plus 13 additional dedicated Drive tools for upload/download, permissions, comments, shared drives, and more.
7
+
8
+ ## Requirements
9
+
10
+ - [gogcli](https://github.com/steipete/gogcli) installed and authenticated
11
+ - Node.js 18+
12
+
13
+ ```bash
14
+ brew install gogcli
15
+ gog auth add your@gmail.com --services drive
16
+ ```
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ npm install -g gogcli-mcp-drive
22
+ ```
23
+
24
+ ### Claude Desktop
25
+
26
+ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
27
+
28
+ ```json
29
+ {
30
+ "mcpServers": {
31
+ "gogcli-drive": {
32
+ "command": "gogcli-mcp-drive",
33
+ "env": {
34
+ "GOG_ACCOUNT": "you@gmail.com"
35
+ }
36
+ }
37
+ }
38
+ }
39
+ ```
40
+
41
+ ### Claude Code
42
+
43
+ ```bash
44
+ claude mcp add gogcli-drive -- gogcli-mcp-drive
45
+ ```
46
+
47
+ ## Extra Drive Tools (13)
48
+
49
+ Plus 5 auth tools and 9 base Drive tools (ls, search, get, mkdir, rename, move, delete, share, run). Base `gog_drive_delete` accepts `permanent=true` for irreversible deletes.
50
+
51
+ | Tool | Description |
52
+ |------|-------------|
53
+ | `gog_drive_download` | Download a file (exports Google Docs formats: pdf, docx, xlsx, etc.) |
54
+ | `gog_drive_upload` | Upload a local file, optionally replacing an existing file or converting to Google format |
55
+ | `gog_drive_copy` | Copy a file to a new file with the given name |
56
+ | `gog_drive_url` | Print shareable web URLs for one or more files |
57
+ | `gog_drive_permissions` | List permissions on a file |
58
+ | `gog_drive_unshare` | Remove a permission from a file |
59
+ | `gog_drive_drives_list` | List shared drives (Team Drives) |
60
+ | `gog_drive_comments_list` | List comments on a file |
61
+ | `gog_drive_comments_get` | Get a single comment by ID |
62
+ | `gog_drive_comments_add` | Add a new comment to a file |
63
+ | `gog_drive_comments_update` | Update a comment's text |
64
+ | `gog_drive_comments_delete` | Delete a comment |
65
+ | `gog_drive_comments_reply` | Reply to an existing comment |
66
+
67
+ ## License
68
+
69
+ MIT
package/SKILL.md ADDED
@@ -0,0 +1,51 @@
1
+ ---
2
+ name: gogcli-mcp-drive
3
+ description: Use when the user asks to browse, upload, download, share, or manage Google Drive files and folders. Triggers for requests involving Drive uploads/downloads, file permissions, shared drives (Team Drives), comments on files, copying or moving files, or any Drive operation. Includes auth and Drive tools only.
4
+ ---
5
+
6
+ # gogcli-mcp-drive
7
+
8
+ Extended Google Drive MCP server via [gogcli](https://github.com/steipete/gogcli) — 27 tools: auth + 9 base Drive + 13 extra dedicated Drive tools.
9
+
10
+ - **Source:** [github.com/chrischall/gogcli-mcp](https://github.com/chrischall/gogcli-mcp)
11
+
12
+ ## Requirements
13
+
14
+ - [gogcli](https://github.com/steipete/gogcli) installed and authenticated
15
+ - Node.js 18 or later
16
+
17
+ ## Setup
18
+
19
+ ```json
20
+ {
21
+ "mcpServers": {
22
+ "gogcli-drive": {
23
+ "command": "npx",
24
+ "args": ["-y", "gogcli-mcp-drive"],
25
+ "env": {
26
+ "GOG_ACCOUNT": "you@gmail.com"
27
+ }
28
+ }
29
+ }
30
+ }
31
+ ```
32
+
33
+ ## Extra Drive Tools
34
+
35
+ | Tool | What it does |
36
+ |------|-------------|
37
+ | `gog_drive_download` | Download a file (Google Docs → pdf/docx/xlsx/etc.) |
38
+ | `gog_drive_upload` | Upload a local file, replace existing, or convert to Google format |
39
+ | `gog_drive_copy` | Copy a file to a new file |
40
+ | `gog_drive_url` | Print shareable URLs for one or more files |
41
+ | `gog_drive_permissions` | List permissions on a file |
42
+ | `gog_drive_unshare` | Remove a permission |
43
+ | `gog_drive_drives_list` | List shared drives (Team Drives) |
44
+ | `gog_drive_comments_list` | List comments on a file |
45
+ | `gog_drive_comments_get` | Get a comment by ID |
46
+ | `gog_drive_comments_add` | Add a new comment |
47
+ | `gog_drive_comments_update` | Edit a comment |
48
+ | `gog_drive_comments_delete` | Delete a comment |
49
+ | `gog_drive_comments_reply` | Reply to a comment |
50
+
51
+ Plus 5 auth tools and 9 base Drive tools (ls, search, get, mkdir, rename, move, delete, share, run).