gogcli-mcp-gmail 2.22.0 → 2.23.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 +91 -6
- package/SKILL.md +32 -4
- package/dist/index.js +986 -30
- package/manifest.json +8 -4
- package/package.json +1 -1
- package/src/tools/gmail-extra.ts +2102 -21
- package/tests/tools/draft-fork-signature.test.ts +67 -0
- package/tests/tools/draft-fork.test.ts +995 -0
- package/tests/tools/draft-write-vs-refetch.test.ts +81 -0
- package/tests/tools/gmail-extra.test.ts +1295 -0
package/manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"manifest_version": "0.3",
|
|
4
4
|
"name": "gogcli-mcp-gmail",
|
|
5
5
|
"display_name": "gogcli (Gmail)",
|
|
6
|
-
"version": "2.
|
|
6
|
+
"version": "2.23.0",
|
|
7
7
|
"description": "Extended Gmail for Claude via gogcli — auth + full Gmail support (threads, labels, drafts, attachments, forward, autoreply, bulk operations)",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Chris Hall",
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"name": "gog_gmail_drafts_list",
|
|
190
|
-
"description": "List Gmail drafts"
|
|
190
|
+
"description": "List Gmail drafts, annotated free with origin (api / non-api) and rootsOwnThread"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"name": "gog_gmail_drafts_get",
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"name": "gog_gmail_drafts_update",
|
|
202
|
-
"description": "Update an existing Gmail draft"
|
|
202
|
+
"description": "Update an existing Gmail draft; re-thread it in place with replyToThreadId (same draft id) and verify the result via threadingVerification; forkSiblingDraftId refuses the write when the new body would drop text the named sibling copy still holds; a 404 is attributed to the draft id or to the reply target before it is reported"
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"name": "gog_gmail_drafts_delete",
|
|
@@ -207,7 +207,11 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"name": "gog_gmail_drafts_send",
|
|
210
|
-
"description": "Send an existing Gmail draft"
|
|
210
|
+
"description": "Send an existing Gmail draft; a 404 comes back diagnosed (DRAFT_FORKED, or GOOGLE_404_NOT_THE_DRAFT when the draft is still listed)"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "gog_gmail_drafts_diff",
|
|
214
|
+
"description": "Diff two named drafts: what each body has that the other lost, how their threading differs, and (only on a link back to the original or on agreement over unquoted text, with evidence) whether one replaced the other"
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"name": "gog_gmail_import",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gogcli-mcp-gmail",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.23.0",
|
|
4
4
|
"mcpName": "io.github.chrischall/gogcli-mcp-gmail",
|
|
5
5
|
"description": "Extended Gmail MCP server via gogcli — auth + full Gmail support (threads, labels, drafts, attachments, forward, autoreply, bulk operations)",
|
|
6
6
|
"author": "Claude Code (AI) <https://www.anthropic.com/claude>",
|