gogcli-mcp-docs 2.0.2 → 2.0.3
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 +37 -0
- package/.claude-plugin/plugin.json +24 -0
- package/.mcp.json +14 -0
- package/.mcpbignore +27 -0
- package/dist/index.js +1321 -579
- package/manifest.json +1 -1
- package/package.json +3 -2
- package/server.json +35 -0
package/manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"manifest_version": "0.3",
|
|
4
4
|
"name": "gogcli-mcp-docs",
|
|
5
5
|
"display_name": "gogcli (Docs)",
|
|
6
|
-
"version": "2.0.
|
|
6
|
+
"version": "2.0.3",
|
|
7
7
|
"description": "Extended Google Docs for Claude via gogcli — auth + full Docs and comments support",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Chris Hall",
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gogcli-mcp-docs",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
|
+
"mcpName": "io.github.chrischall/gogcli-mcp-docs",
|
|
4
5
|
"description": "Extended Google Docs MCP server via gogcli — all base tools plus full Docs support",
|
|
5
6
|
"author": "Claude Code (AI) <https://www.anthropic.com/claude>",
|
|
6
7
|
"repository": {
|
|
@@ -24,7 +25,7 @@
|
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
27
|
-
"zod": "^4.
|
|
28
|
+
"zod": "^4.4.2"
|
|
28
29
|
},
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"keywords": [
|
package/server.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.chrischall/gogcli-mcp-docs",
|
|
4
|
+
"description": "Extended Google Docs for Claude via gogcli — auth + full Docs and comments support",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/chrischall/gogcli-mcp",
|
|
7
|
+
"source": "github",
|
|
8
|
+
"subfolder": "packages/gogcli-mcp-docs"
|
|
9
|
+
},
|
|
10
|
+
"version": "2.0.3",
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registryType": "npm",
|
|
14
|
+
"identifier": "gogcli-mcp-docs",
|
|
15
|
+
"version": "2.0.3",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
},
|
|
19
|
+
"environmentVariables": [
|
|
20
|
+
{
|
|
21
|
+
"name": "GOG_ACCOUNT",
|
|
22
|
+
"description": "Email address of the Google account to use (matches gogcli auth)",
|
|
23
|
+
"isRequired": false,
|
|
24
|
+
"format": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "GOG_PATH",
|
|
28
|
+
"description": "Override path to the gogcli binary (auto-discovered otherwise)",
|
|
29
|
+
"isRequired": false,
|
|
30
|
+
"format": "string"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|