gogcli-mcp 2.0.0 → 2.0.4
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/.claude-plugin/marketplace.json +38 -0
- package/.claude-plugin/plugin.json +25 -0
- package/.mcp.json +14 -0
- package/.mcpbignore +27 -0
- package/README.md +3 -0
- package/dist/index.js +2416 -665
- package/dist/lib.js +2533 -780
- package/manifest.json +273 -1
- package/package.json +21 -3
- package/server.json +35 -0
- package/src/lib.ts +2 -0
- package/src/server.ts +10 -1
- package/src/tools/calendar.ts +92 -0
- package/src/tools/classroom.ts +696 -0
- package/src/tools/contacts.ts +74 -0
- package/src/tools/drive.ts +17 -6
- package/src/tools/slides.ts +203 -0
- package/src/tools/utils.ts +9 -1
- package/tests/runner.test.ts +16 -0
- package/tests/server.test.ts +43 -0
- package/tests/tools/calendar.test.ts +138 -0
- package/tests/tools/classroom.test.ts +875 -0
- package/tests/tools/contacts.test.ts +100 -0
- package/tests/tools/drive.test.ts +49 -3
- package/tests/tools/slides.test.ts +441 -0
- package/tests/tools/utils.test.ts +65 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "gogcli-mcp",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "Chris Hall",
|
|
6
|
+
"email": "chris.c.hall@gmail.com"
|
|
7
|
+
},
|
|
8
|
+
"metadata": {
|
|
9
|
+
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
10
|
+
"version": "2.0.4"
|
|
11
|
+
},
|
|
12
|
+
"plugins": [
|
|
13
|
+
{
|
|
14
|
+
"name": "gogcli-mcp",
|
|
15
|
+
"displayName": "gogcli",
|
|
16
|
+
"source": "./",
|
|
17
|
+
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
18
|
+
"version": "2.0.4",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "Chris Hall"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/chrischall/gogcli-mcp/tree/main/packages/gogcli-mcp",
|
|
23
|
+
"repository": "https://github.com/chrischall/gogcli-mcp",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"google",
|
|
27
|
+
"sheets",
|
|
28
|
+
"spreadsheet",
|
|
29
|
+
"gmail",
|
|
30
|
+
"calendar",
|
|
31
|
+
"drive",
|
|
32
|
+
"gogcli",
|
|
33
|
+
"gog"
|
|
34
|
+
],
|
|
35
|
+
"category": "productivity"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gogcli-mcp",
|
|
3
|
+
"displayName": "gogcli",
|
|
4
|
+
"version": "2.0.4",
|
|
5
|
+
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Chris Hall",
|
|
8
|
+
"email": "chris.c.hall@gmail.com"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/chrischall/gogcli-mcp/tree/main/packages/gogcli-mcp",
|
|
11
|
+
"repository": "https://github.com/chrischall/gogcli-mcp",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"google",
|
|
15
|
+
"sheets",
|
|
16
|
+
"spreadsheet",
|
|
17
|
+
"gmail",
|
|
18
|
+
"calendar",
|
|
19
|
+
"drive",
|
|
20
|
+
"gogcli",
|
|
21
|
+
"gog"
|
|
22
|
+
],
|
|
23
|
+
"skills": "./SKILL.md",
|
|
24
|
+
"mcp": "./.mcp.json"
|
|
25
|
+
}
|
package/.mcp.json
ADDED
package/.mcpbignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Source — dist/ is all that's needed at runtime
|
|
2
|
+
src/
|
|
3
|
+
tests/
|
|
4
|
+
|
|
5
|
+
# Dev tooling
|
|
6
|
+
node_modules/
|
|
7
|
+
coverage/
|
|
8
|
+
tsconfig.json
|
|
9
|
+
tsconfig.tsbuildinfo
|
|
10
|
+
vitest.config.ts
|
|
11
|
+
*.skill
|
|
12
|
+
*.mcpb
|
|
13
|
+
|
|
14
|
+
# Plugin/marketplace files (not needed in the MCPB bundle)
|
|
15
|
+
.claude-plugin/
|
|
16
|
+
.mcp.json
|
|
17
|
+
|
|
18
|
+
# GitHub/CI (lives at monorepo root, belt-and-suspenders)
|
|
19
|
+
.github/
|
|
20
|
+
|
|
21
|
+
# Local config
|
|
22
|
+
.env
|
|
23
|
+
.env.*
|
|
24
|
+
|
|
25
|
+
# Git
|
|
26
|
+
.git/
|
|
27
|
+
.gitignore
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# gogcli-mcp
|
|
2
2
|
|
|
3
|
+
> [!WARNING]
|
|
4
|
+
> **AI-developed project.** This codebase was built and is actively maintained by [Claude Code](https://www.anthropic.com/claude). Review all code and tool permissions before use.
|
|
5
|
+
|
|
3
6
|
Base [Model Context Protocol](https://modelcontextprotocol.io) server that gives Claude access to Google Workspace via [gogcli](https://github.com/steipete/gogcli). Includes 52 tools across 8 services: Sheets, Docs, Gmail, Calendar, Drive, Tasks, Contacts, and Auth.
|
|
4
7
|
|
|
5
8
|
For extended Sheets or Docs support, see [gogcli-mcp-sheets](https://www.npmjs.com/package/gogcli-mcp-sheets) and [gogcli-mcp-docs](https://www.npmjs.com/package/gogcli-mcp-docs).
|