gogcli-mcp-sheets 1.0.6 → 1.0.7
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 +75 -0
- package/dist/index.js +31212 -0
- package/package.json +1 -2
- package/src/index.ts +1 -1
- package/src/tools/sheets-extra.ts +1 -1
- package/tests/tools/sheets-extra.test.ts +2 -2
- package/tsconfig.json +3 -5
package/README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# gogcli-mcp-sheets
|
|
2
|
+
|
|
3
|
+
Extended Google Sheets [MCP](https://modelcontextprotocol.io) server via [gogcli](https://github.com/steipete/gogcli). Includes all 53 base tools from [gogcli-mcp](https://www.npmjs.com/package/gogcli-mcp) plus 22 additional dedicated Sheets tools for tab management, formatting, named ranges, and more.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- [gogcli](https://github.com/steipete/gogcli) installed and authenticated
|
|
8
|
+
- Node.js 18+
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
brew install gogcli
|
|
12
|
+
gog auth add your@gmail.com --services sheets
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g gogcli-mcp-sheets
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Claude Desktop
|
|
22
|
+
|
|
23
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"gogcli-sheets": {
|
|
29
|
+
"command": "gogcli-mcp-sheets",
|
|
30
|
+
"env": {
|
|
31
|
+
"GOG_ACCOUNT": "you@gmail.com"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Claude Code
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
claude mcp add gogcli-sheets -- gogcli-mcp-sheets
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Extra Sheets Tools (22)
|
|
45
|
+
|
|
46
|
+
These are in addition to the 53 base tools (Gmail, Calendar, Drive, Tasks, Contacts, Auth, basic Sheets/Docs).
|
|
47
|
+
|
|
48
|
+
| Tool | Description |
|
|
49
|
+
|------|-------------|
|
|
50
|
+
| `gog_sheets_add_tab` | Add a new sheet tab |
|
|
51
|
+
| `gog_sheets_delete_tab` | Delete a sheet tab |
|
|
52
|
+
| `gog_sheets_rename_tab` | Rename a sheet tab |
|
|
53
|
+
| `gog_sheets_copy` | Copy a sheet to another spreadsheet |
|
|
54
|
+
| `gog_sheets_export` | Export as CSV, TSV, XLSX, PDF, ODS, or HTML |
|
|
55
|
+
| `gog_sheets_freeze` | Freeze rows and/or columns |
|
|
56
|
+
| `gog_sheets_insert` | Insert rows or columns |
|
|
57
|
+
| `gog_sheets_merge` | Merge cells |
|
|
58
|
+
| `gog_sheets_unmerge` | Unmerge cells |
|
|
59
|
+
| `gog_sheets_format` | Apply cell formatting (bold, color, etc.) |
|
|
60
|
+
| `gog_sheets_number_format` | Set number format (currency, percent, date, etc.) |
|
|
61
|
+
| `gog_sheets_read_format` | Read cell formatting |
|
|
62
|
+
| `gog_sheets_resize_columns` | Resize column widths or auto-fit |
|
|
63
|
+
| `gog_sheets_resize_rows` | Resize row heights or auto-fit |
|
|
64
|
+
| `gog_sheets_named_ranges_list` | List named ranges |
|
|
65
|
+
| `gog_sheets_named_ranges_get` | Get a named range by name or ID |
|
|
66
|
+
| `gog_sheets_named_ranges_add` | Create a named range |
|
|
67
|
+
| `gog_sheets_named_ranges_update` | Update a named range |
|
|
68
|
+
| `gog_sheets_named_ranges_delete` | Delete a named range |
|
|
69
|
+
| `gog_sheets_notes` | Read cell notes |
|
|
70
|
+
| `gog_sheets_update_note` | Add or update cell notes |
|
|
71
|
+
| `gog_sheets_links` | List hyperlinks in a range |
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
MIT
|