gogcli-mcp 1.0.0 → 1.0.2
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/.mcp.json +3 -1
- package/README.md +2 -2
- package/dist/index.js +620 -50
- package/gogcli-mcp-1.0.2.mcpb +0 -0
- package/gogcli-mcp-1.0.2.skill +0 -0
- package/manifest.json +189 -2
- package/package.json +5 -1
- package/src/index.ts +15 -1
- package/src/runner.ts +1 -1
- package/src/tools/auth.ts +57 -0
- package/src/tools/calendar.ts +128 -0
- package/src/tools/contacts.ts +71 -0
- package/src/tools/docs.ts +89 -0
- package/src/tools/drive.ts +117 -0
- package/src/tools/gmail.ts +67 -0
- package/src/tools/sheets.ts +17 -60
- package/src/tools/tasks.ts +91 -0
- package/src/tools/utils.ts +35 -0
- package/tests/runner.test.ts +20 -0
- package/tests/tools/auth.test.ts +103 -0
- package/tests/tools/calendar.test.ts +229 -0
- package/tests/tools/contacts.test.ts +122 -0
- package/tests/tools/docs.test.ts +185 -0
- package/tests/tools/drive.test.ts +185 -0
- package/tests/tools/gmail.test.ts +125 -0
- package/tests/tools/sheets.test.ts +13 -2
- package/tests/tools/tasks.test.ts +146 -0
- package/.claude/settings.local.json +0 -35
package/.mcp.json
CHANGED
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ brew install gogcli
|
|
|
30
30
|
Then authenticate:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
gog auth add
|
|
33
|
+
gog auth add <your-email> --services sheets
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Installation
|
|
@@ -113,7 +113,7 @@ Claude will pass `account: "work@company.com"` to the tool, which adds `--accoun
|
|
|
113
113
|
|
|
114
114
|
**"gog not found"** — gogcli is not installed or not in your PATH. Run `gog --help` in your terminal to verify. Install with `brew install gogcli`.
|
|
115
115
|
|
|
116
|
-
**"not authenticated"** — run `gog auth add` to authenticate. Run `gog auth list` to see configured accounts.
|
|
116
|
+
**"not authenticated"** — run `gog auth add <your-email> --services sheets` to authenticate. Run `gog auth list` to see configured accounts.
|
|
117
117
|
|
|
118
118
|
**"Spreadsheet not found"** — verify the spreadsheet ID (the long string in the URL between `/d/` and `/edit`).
|
|
119
119
|
|