gogcli-mcp-gmail 2.8.0 → 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/README.md +1 -1
- package/SKILL.md +1 -1
- package/dist/index.js +20210 -19656
- package/manifest.json +23 -3
- package/package.json +3 -2
- package/src/index.ts +7 -9
- package/src/tools/gmail-extra.ts +498 -39
- package/tests/tools/gmail-extra.test.ts +720 -137
- package/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Plus 5 auth tools and 4 base Gmail tools (search, get, send, run).
|
|
|
53
53
|
| Tool | Description |
|
|
54
54
|
|------|-------------|
|
|
55
55
|
| `gog_gmail_raw` | Dump the raw Gmail API JSON for a message (lossless, for scripting) |
|
|
56
|
-
| `gog_gmail_attachment` | Download
|
|
56
|
+
| `gog_gmail_attachment` | Download an attachment and deliver its contents — inline (base64 image/resource) when ≤3 MiB, otherwise uploaded to Google Drive with a shareable link (`deliver`: auto/inline/drive/off) |
|
|
57
57
|
| `gog_gmail_url` | Print Gmail web URLs for one or more threads |
|
|
58
58
|
| `gog_gmail_history` | List Gmail history events since a given historyId |
|
|
59
59
|
|
package/SKILL.md
CHANGED
|
@@ -36,7 +36,7 @@ Extended Gmail MCP server via [gogcli](https://github.com/openclaw/gogcli) — 3
|
|
|
36
36
|
| Tool | What it does |
|
|
37
37
|
|------|-------------|
|
|
38
38
|
| `gog_gmail_raw` | Raw Gmail API JSON for a message |
|
|
39
|
-
| `gog_gmail_attachment` | Download a
|
|
39
|
+
| `gog_gmail_attachment` | Download an attachment and deliver its contents — inline when ≤3 MiB, else uploaded to Drive with a link (`deliver`: auto/inline/drive/off) |
|
|
40
40
|
| `gog_gmail_url` | Print web URLs for threads |
|
|
41
41
|
| `gog_gmail_history` | List history events since a historyId |
|
|
42
42
|
|