gogcli-mcp 2.26.0 → 2.27.1
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 +3 -3
- package/SKILL.md +2 -2
- package/dist/index.js +480 -131
- package/dist/lib.js +484 -132
- package/manifest.json +9 -1
- package/mint.yaml +1 -1
- package/package.json +3 -3
- package/server.json +2 -2
- package/src/lib.ts +6 -0
- package/src/runner.ts +1 -1
- package/src/tools/gmail.ts +136 -5
- package/src/tools/utils.ts +20 -0
- package/src/worker.ts +1 -1
- package/tests/server.test.ts +65 -0
- package/tests/tools/gmail.test.ts +320 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.27.1"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
13
13
|
{
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"displayName": "gogcli",
|
|
16
16
|
"source": "./",
|
|
17
17
|
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
18
|
-
"version": "2.
|
|
18
|
+
"version": "2.27.1",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> [!WARNING]
|
|
4
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
5
|
|
|
6
|
-
Base [Model Context Protocol](https://modelcontextprotocol.io) server that gives Claude access to Google Workspace via [gogcli](https://github.com/openclaw/gogcli). Includes
|
|
6
|
+
Base [Model Context Protocol](https://modelcontextprotocol.io) server that gives Claude access to Google Workspace via [gogcli](https://github.com/openclaw/gogcli). Includes 114 tools across 13 services: Sheets, Docs, Gmail, Calendar, Drive, Slides, Classroom, Chat, Apps Script, Tasks, Contacts, the generic Discovery API escape hatch, and Auth.
|
|
7
7
|
|
|
8
8
|
For extended Sheets or Docs support, see [gogcli-mcp-sheets](https://www.npmjs.com/package/gogcli-mcp-sheets) and [gogcli-mcp-docs](https://www.npmjs.com/package/gogcli-mcp-docs).
|
|
9
9
|
|
|
@@ -46,13 +46,13 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
|
46
46
|
claude mcp add gogcli-mcp -- gogcli-mcp
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
## Tools (
|
|
49
|
+
## Tools (114)
|
|
50
50
|
|
|
51
51
|
| Service | Tools | Includes |
|
|
52
52
|
|---------|-------|----------|
|
|
53
53
|
| **Sheets** | 8 | get, update, append, clear, metadata, create, find-replace, run |
|
|
54
54
|
| **Docs** | 7 | info, cat, create, write, find-replace, structure, run |
|
|
55
|
-
| **Gmail** |
|
|
55
|
+
| **Gmail** | 6 | search, get, send, reply, reply-all, run |
|
|
56
56
|
| **Calendar** | 7 | events, get, create, update, delete, respond, run |
|
|
57
57
|
| **Drive** | 11 | ls, search, get, mkdir, rename, move, delete, share, extract-text, read-bytes, run |
|
|
58
58
|
| **Slides** | 7 | export, info, create, copy, list-slides, read-slide, run |
|
package/SKILL.md
CHANGED
|
@@ -32,13 +32,13 @@ MCP server wrapping [gogcli](https://github.com/openclaw/gogcli) — provides Cl
|
|
|
32
32
|
|
|
33
33
|
`GOG_ACCOUNT` is optional — omit it to use gogcli's configured default account.
|
|
34
34
|
|
|
35
|
-
## Tools (
|
|
35
|
+
## Tools (114)
|
|
36
36
|
|
|
37
37
|
| Service | Tools |
|
|
38
38
|
|---------|-------|
|
|
39
39
|
| **Sheets** (8) | get, update, append, clear, metadata, create, find-replace, run |
|
|
40
40
|
| **Docs** (7) | info, cat, create, write, find-replace, structure, run |
|
|
41
|
-
| **Gmail** (
|
|
41
|
+
| **Gmail** (6) | search, get, send, reply, reply-all, run |
|
|
42
42
|
| **Calendar** (7) | events, get, create, update, delete, respond, run |
|
|
43
43
|
| **Drive** (11) | ls, search, get, mkdir, rename, move, delete, share, extract-text, read-bytes, run |
|
|
44
44
|
| **Slides** (7) | export, info, create, copy, list-slides, read-slide, run |
|