gogcli-mcp-sheets 1.0.7 → 1.0.9

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/SKILL.md ADDED
@@ -0,0 +1,60 @@
1
+ ---
2
+ name: gogcli-mcp-sheets
3
+ description: Use when the user asks to read, write, format, or manage Google Sheets. Triggers for requests involving spreadsheet data, cell formatting, tab management, named ranges, merging cells, freezing rows/columns, exporting spreadsheets, or any Sheets operation. Also includes Gmail, Calendar, Drive, Docs, Tasks, and Contacts tools.
4
+ ---
5
+
6
+ # gogcli-mcp-sheets
7
+
8
+ Extended Google Sheets MCP server via [gogcli](https://github.com/steipete/gogcli) — includes all base tools (Gmail, Calendar, Drive, Docs, Tasks, Contacts) plus 22 additional dedicated Sheets 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-sheets": {
23
+ "command": "npx",
24
+ "args": ["-y", "gogcli-mcp-sheets"],
25
+ "env": {
26
+ "GOG_ACCOUNT": "you@gmail.com"
27
+ }
28
+ }
29
+ }
30
+ }
31
+ ```
32
+
33
+ ## Extra Sheets Tools
34
+
35
+ | Tool | What it does |
36
+ |------|-------------|
37
+ | `gog_sheets_add_tab` | Add a new sheet tab |
38
+ | `gog_sheets_delete_tab` | Delete a sheet tab |
39
+ | `gog_sheets_rename_tab` | Rename a sheet tab |
40
+ | `gog_sheets_copy` | Copy a sheet to another spreadsheet |
41
+ | `gog_sheets_export` | Export as CSV, TSV, XLSX, PDF |
42
+ | `gog_sheets_freeze` | Freeze rows and/or columns |
43
+ | `gog_sheets_insert` | Insert rows or columns |
44
+ | `gog_sheets_merge` | Merge cells |
45
+ | `gog_sheets_unmerge` | Unmerge cells |
46
+ | `gog_sheets_format` | Apply cell formatting |
47
+ | `gog_sheets_number_format` | Set number format |
48
+ | `gog_sheets_read_format` | Read cell formatting |
49
+ | `gog_sheets_resize_columns` | Resize column widths |
50
+ | `gog_sheets_resize_rows` | Resize row heights |
51
+ | `gog_sheets_notes` | Read cell notes |
52
+ | `gog_sheets_update_note` | Add or update cell notes |
53
+ | `gog_sheets_links` | List hyperlinks in a range |
54
+ | `gog_sheets_named_ranges_list` | List named ranges |
55
+ | `gog_sheets_named_ranges_get` | Get a named range |
56
+ | `gog_sheets_named_ranges_add` | Create a named range |
57
+ | `gog_sheets_named_ranges_update` | Update a named range |
58
+ | `gog_sheets_named_ranges_delete` | Delete a named range |
59
+
60
+ These are in addition to the 52 base tools (Sheets CRUD, Gmail, Calendar, Drive, Docs, Tasks, Contacts, Auth).
package/dist/index.js CHANGED
@@ -30893,7 +30893,7 @@ function registerTasksTools(server2) {
30893
30893
  }
30894
30894
 
30895
30895
  // ../gogcli-mcp/src/server.ts
30896
- var VERSION = true ? "1.0.6" : "0.0.0";
30896
+ var VERSION = true ? "1.0.10" : "0.0.0";
30897
30897
  function createBaseServer(options) {
30898
30898
  const server2 = new McpServer({
30899
30899
  name: options?.name ?? "gogcli",
package/manifest.json ADDED
@@ -0,0 +1,369 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/anthropics/dxt/main/dist/mcpb-manifest.schema.json",
3
+ "manifest_version": "0.3",
4
+ "name": "gogcli-mcp-sheets",
5
+ "display_name": "gogcli (Sheets)",
6
+ "version": "1.0.10",
7
+ "description": "Extended Google Sheets for Claude via gogcli — all base tools plus full Sheets support",
8
+ "author": {
9
+ "name": "Chris Hall",
10
+ "email": "chris.c.hall@gmail.com",
11
+ "url": "https://github.com/chrischall"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/chrischall/gogcli-mcp"
16
+ },
17
+ "homepage": "https://github.com/chrischall/gogcli-mcp",
18
+ "support": "https://github.com/chrischall/gogcli-mcp/issues",
19
+ "license": "MIT",
20
+ "keywords": [
21
+ "google",
22
+ "sheets",
23
+ "spreadsheet",
24
+ "gmail",
25
+ "calendar",
26
+ "drive",
27
+ "gogcli",
28
+ "gog",
29
+ "tabs",
30
+ "formatting",
31
+ "named-ranges"
32
+ ],
33
+ "server": {
34
+ "type": "node",
35
+ "entry_point": "dist/index.js",
36
+ "mcp_config": {
37
+ "command": "node",
38
+ "args": [
39
+ "${__dirname}/dist/index.js"
40
+ ],
41
+ "env": {
42
+ "GOG_ACCOUNT": "${user_config.gog_account}",
43
+ "GOG_PATH": "${user_config.gog_path}"
44
+ }
45
+ }
46
+ },
47
+ "user_config": {
48
+ "gog_account": {
49
+ "type": "string",
50
+ "title": "Google Account",
51
+ "description": "Default Google account email (optional — uses gogcli's configured default if omitted)",
52
+ "required": false
53
+ },
54
+ "gog_path": {
55
+ "type": "string",
56
+ "title": "gog Executable Path",
57
+ "description": "Path to the gog executable (optional — defaults to 'gog' on your PATH)",
58
+ "required": false
59
+ }
60
+ },
61
+ "tools": [
62
+ {
63
+ "name": "gog_auth_add",
64
+ "description": "Authorize a Google account via browser-based OAuth"
65
+ },
66
+ {
67
+ "name": "gog_auth_list",
68
+ "description": "List all Google accounts stored in gogcli"
69
+ },
70
+ {
71
+ "name": "gog_auth_status",
72
+ "description": "Show gogcli auth configuration (keyring, credential files)"
73
+ },
74
+ {
75
+ "name": "gog_auth_services",
76
+ "description": "List Google services and OAuth scopes supported by gogcli"
77
+ },
78
+ {
79
+ "name": "gog_auth_run",
80
+ "description": "Run any gog auth subcommand (escape hatch)"
81
+ },
82
+ {
83
+ "name": "gog_gmail_search",
84
+ "description": "Search Gmail threads by query"
85
+ },
86
+ {
87
+ "name": "gog_gmail_get",
88
+ "description": "Get a Gmail message by ID"
89
+ },
90
+ {
91
+ "name": "gog_gmail_send",
92
+ "description": "Send an email"
93
+ },
94
+ {
95
+ "name": "gog_gmail_run",
96
+ "description": "Run any gog gmail subcommand (escape hatch)"
97
+ },
98
+ {
99
+ "name": "gog_calendar_events",
100
+ "description": "List calendar events with optional filters"
101
+ },
102
+ {
103
+ "name": "gog_calendar_get",
104
+ "description": "Get a specific calendar event"
105
+ },
106
+ {
107
+ "name": "gog_calendar_create",
108
+ "description": "Create a calendar event"
109
+ },
110
+ {
111
+ "name": "gog_calendar_update",
112
+ "description": "Update an existing calendar event"
113
+ },
114
+ {
115
+ "name": "gog_calendar_delete",
116
+ "description": "Delete a calendar event"
117
+ },
118
+ {
119
+ "name": "gog_calendar_respond",
120
+ "description": "Respond to a calendar event invitation"
121
+ },
122
+ {
123
+ "name": "gog_calendar_run",
124
+ "description": "Run any gog calendar subcommand (escape hatch)"
125
+ },
126
+ {
127
+ "name": "gog_drive_ls",
128
+ "description": "List files in a Google Drive folder"
129
+ },
130
+ {
131
+ "name": "gog_drive_search",
132
+ "description": "Search Google Drive files"
133
+ },
134
+ {
135
+ "name": "gog_drive_get",
136
+ "description": "Get Google Drive file metadata"
137
+ },
138
+ {
139
+ "name": "gog_drive_mkdir",
140
+ "description": "Create a folder in Google Drive"
141
+ },
142
+ {
143
+ "name": "gog_drive_rename",
144
+ "description": "Rename a file or folder in Google Drive"
145
+ },
146
+ {
147
+ "name": "gog_drive_move",
148
+ "description": "Move a file to a different folder"
149
+ },
150
+ {
151
+ "name": "gog_drive_delete",
152
+ "description": "Move a file to trash"
153
+ },
154
+ {
155
+ "name": "gog_drive_share",
156
+ "description": "Share a file or folder"
157
+ },
158
+ {
159
+ "name": "gog_drive_run",
160
+ "description": "Run any gog drive subcommand (escape hatch)"
161
+ },
162
+ {
163
+ "name": "gog_tasks_lists",
164
+ "description": "List all Google Task lists"
165
+ },
166
+ {
167
+ "name": "gog_tasks_list",
168
+ "description": "List tasks in a task list"
169
+ },
170
+ {
171
+ "name": "gog_tasks_get",
172
+ "description": "Get a specific task"
173
+ },
174
+ {
175
+ "name": "gog_tasks_add",
176
+ "description": "Add a task to a task list"
177
+ },
178
+ {
179
+ "name": "gog_tasks_done",
180
+ "description": "Mark a task as completed"
181
+ },
182
+ {
183
+ "name": "gog_tasks_delete",
184
+ "description": "Delete a task"
185
+ },
186
+ {
187
+ "name": "gog_tasks_run",
188
+ "description": "Run any gog tasks subcommand (escape hatch)"
189
+ },
190
+ {
191
+ "name": "gog_contacts_search",
192
+ "description": "Search Google Contacts"
193
+ },
194
+ {
195
+ "name": "gog_contacts_list",
196
+ "description": "List all Google Contacts"
197
+ },
198
+ {
199
+ "name": "gog_contacts_get",
200
+ "description": "Get a contact by resource name"
201
+ },
202
+ {
203
+ "name": "gog_contacts_create",
204
+ "description": "Create a new Google Contact"
205
+ },
206
+ {
207
+ "name": "gog_contacts_run",
208
+ "description": "Run any gog contacts subcommand (escape hatch)"
209
+ },
210
+ {
211
+ "name": "gog_docs_info",
212
+ "description": "Get Google Doc metadata (title, ID, properties)"
213
+ },
214
+ {
215
+ "name": "gog_docs_cat",
216
+ "description": "Read a Google Doc as plain text"
217
+ },
218
+ {
219
+ "name": "gog_docs_create",
220
+ "description": "Create a new Google Doc"
221
+ },
222
+ {
223
+ "name": "gog_docs_write",
224
+ "description": "Write or append text content to a Google Doc"
225
+ },
226
+ {
227
+ "name": "gog_docs_find_replace",
228
+ "description": "Find and replace text in a Google Doc"
229
+ },
230
+ {
231
+ "name": "gog_docs_structure",
232
+ "description": "Show document structure with numbered paragraphs"
233
+ },
234
+ {
235
+ "name": "gog_docs_run",
236
+ "description": "Run any gog docs subcommand (escape hatch)"
237
+ },
238
+ {
239
+ "name": "gog_sheets_get",
240
+ "description": "Read values from a Google Sheets range"
241
+ },
242
+ {
243
+ "name": "gog_sheets_update",
244
+ "description": "Write values to a Google Sheets range"
245
+ },
246
+ {
247
+ "name": "gog_sheets_append",
248
+ "description": "Append rows to a Google Sheet"
249
+ },
250
+ {
251
+ "name": "gog_sheets_clear",
252
+ "description": "Clear values in a Google Sheets range"
253
+ },
254
+ {
255
+ "name": "gog_sheets_metadata",
256
+ "description": "Get spreadsheet metadata (title, tabs, named ranges)"
257
+ },
258
+ {
259
+ "name": "gog_sheets_create",
260
+ "description": "Create a new Google Spreadsheet"
261
+ },
262
+ {
263
+ "name": "gog_sheets_find_replace",
264
+ "description": "Find and replace text across a spreadsheet"
265
+ },
266
+ {
267
+ "name": "gog_sheets_run",
268
+ "description": "Run any gog sheets subcommand (escape hatch)"
269
+ },
270
+ {
271
+ "name": "gog_sheets_add_tab",
272
+ "description": "Add a new sheet tab to a spreadsheet."
273
+ },
274
+ {
275
+ "name": "gog_sheets_delete_tab",
276
+ "description": "Delete a sheet tab from a spreadsheet."
277
+ },
278
+ {
279
+ "name": "gog_sheets_rename_tab",
280
+ "description": "Rename a sheet tab."
281
+ },
282
+ {
283
+ "name": "gog_sheets_copy",
284
+ "description": "Copy a spreadsheet to a new spreadsheet with the given title."
285
+ },
286
+ {
287
+ "name": "gog_sheets_export",
288
+ "description": "Export a spreadsheet as CSV, TSV, or PDF."
289
+ },
290
+ {
291
+ "name": "gog_sheets_freeze",
292
+ "description": "Freeze rows and/or columns in a sheet."
293
+ },
294
+ {
295
+ "name": "gog_sheets_insert",
296
+ "description": "Insert rows or columns into a sheet."
297
+ },
298
+ {
299
+ "name": "gog_sheets_merge",
300
+ "description": "Merge cells in a range."
301
+ },
302
+ {
303
+ "name": "gog_sheets_unmerge",
304
+ "description": "Unmerge previously merged cells in a range."
305
+ },
306
+ {
307
+ "name": "gog_sheets_format",
308
+ "description": "Apply cell formatting (bold, colors, alignment, etc.) to a range. Pass format as a JSON CellFormat object."
309
+ },
310
+ {
311
+ "name": "gog_sheets_number_format",
312
+ "description": "Set number format on a range (currency, percentage, date, etc.)."
313
+ },
314
+ {
315
+ "name": "gog_sheets_read_format",
316
+ "description": "Read cell formatting for a range."
317
+ },
318
+ {
319
+ "name": "gog_sheets_resize_columns",
320
+ "description": "Resize column widths. Use --auto for auto-fit or --width for a specific pixel width."
321
+ },
322
+ {
323
+ "name": "gog_sheets_resize_rows",
324
+ "description": "Resize row heights. Use --auto for auto-fit or --height for a specific pixel height."
325
+ },
326
+ {
327
+ "name": "gog_sheets_notes",
328
+ "description": "Read cell notes in a range."
329
+ },
330
+ {
331
+ "name": "gog_sheets_update_note",
332
+ "description": "Add, update, or clear a cell note. Pass an empty string to clear the note."
333
+ },
334
+ {
335
+ "name": "gog_sheets_links",
336
+ "description": "List hyperlinks in a range."
337
+ },
338
+ {
339
+ "name": "gog_sheets_named_ranges_list",
340
+ "description": "List all named ranges in a spreadsheet."
341
+ },
342
+ {
343
+ "name": "gog_sheets_named_ranges_get",
344
+ "description": "Get a named range by name or ID."
345
+ },
346
+ {
347
+ "name": "gog_sheets_named_ranges_add",
348
+ "description": "Create a new named range."
349
+ },
350
+ {
351
+ "name": "gog_sheets_named_ranges_update",
352
+ "description": "Update a named range (change its name, range, or both)."
353
+ },
354
+ {
355
+ "name": "gog_sheets_named_ranges_delete",
356
+ "description": "Delete a named range."
357
+ }
358
+ ],
359
+ "compatibility": {
360
+ "platforms": [
361
+ "darwin",
362
+ "linux",
363
+ "win32"
364
+ ],
365
+ "runtimes": {
366
+ "node": ">=18.0.0"
367
+ }
368
+ }
369
+ }
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "gogcli-mcp-sheets",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Extended Google Sheets MCP server via gogcli — all base tools plus full Sheets support",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/chrischall/gogcli-mcp"
8
+ },
5
9
  "type": "module",
6
10
  "bin": {
7
11
  "gogcli-mcp-sheets": "dist/index.js"