gogcli-mcp 2.0.10 → 2.0.11
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 +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +2 -2
- package/SKILL.md +2 -2
- package/dist/index.js +2 -2
- package/dist/lib.js +2 -2
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/skills/gogcli/SKILL.md +2 -2
- package/src/runner.ts +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
10
|
-
"version": "2.0.
|
|
10
|
+
"version": "2.0.11"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
13
13
|
{
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"displayName": "gogcli",
|
|
16
16
|
"source": "./",
|
|
17
17
|
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
18
|
-
"version": "2.0.
|
|
18
|
+
"version": "2.0.11",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
> [!WARNING]
|
|
4
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
5
|
|
|
6
|
-
Base [Model Context Protocol](https://modelcontextprotocol.io) server that gives Claude access to Google Workspace via [gogcli](https://github.com/
|
|
6
|
+
Base [Model Context Protocol](https://modelcontextprotocol.io) server that gives Claude access to Google Workspace via [gogcli](https://github.com/openclaw/gogcli). Includes 52 tools across 8 services: Sheets, Docs, Gmail, Calendar, Drive, Tasks, Contacts, and Auth.
|
|
7
7
|
|
|
8
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).
|
|
9
9
|
|
|
10
10
|
## Requirements
|
|
11
11
|
|
|
12
|
-
- [gogcli](https://github.com/
|
|
12
|
+
- [gogcli](https://github.com/openclaw/gogcli) installed and authenticated
|
|
13
13
|
- Node.js 18+
|
|
14
14
|
|
|
15
15
|
```bash
|
package/SKILL.md
CHANGED
|
@@ -5,13 +5,13 @@ description: Use when the user asks to interact with Google Workspace services.
|
|
|
5
5
|
|
|
6
6
|
# gogcli-mcp
|
|
7
7
|
|
|
8
|
-
MCP server wrapping [gogcli](https://github.com/
|
|
8
|
+
MCP server wrapping [gogcli](https://github.com/openclaw/gogcli) — provides Claude with access to Google Sheets, Docs, Gmail, Calendar, Drive, Tasks, Contacts, and Auth.
|
|
9
9
|
|
|
10
10
|
- **Source:** [github.com/chrischall/gogcli-mcp](https://github.com/chrischall/gogcli-mcp)
|
|
11
11
|
|
|
12
12
|
## Requirements
|
|
13
13
|
|
|
14
|
-
- [gogcli](https://github.com/
|
|
14
|
+
- [gogcli](https://github.com/openclaw/gogcli) installed and authenticated
|
|
15
15
|
- Node.js 18 or later
|
|
16
16
|
|
|
17
17
|
## Setup
|
package/dist/index.js
CHANGED
|
@@ -31063,7 +31063,7 @@ async function run(args, options = {}) {
|
|
|
31063
31063
|
settled = true;
|
|
31064
31064
|
if (err.code === "ENOENT") {
|
|
31065
31065
|
reject(new Error(
|
|
31066
|
-
"gog executable not found. Install gogcli (https://github.com/
|
|
31066
|
+
"gog executable not found. Install gogcli (https://github.com/openclaw/gogcli) or set GOG_PATH in your MCP client config to the absolute binary path (run `which gog` in a terminal to find it)."
|
|
31067
31067
|
));
|
|
31068
31068
|
return;
|
|
31069
31069
|
}
|
|
@@ -32224,7 +32224,7 @@ function registerTasksTools(server2) {
|
|
|
32224
32224
|
}
|
|
32225
32225
|
|
|
32226
32226
|
// src/server.ts
|
|
32227
|
-
var VERSION = true ? "2.0.
|
|
32227
|
+
var VERSION = true ? "2.0.11" : "0.0.0";
|
|
32228
32228
|
function createServer(options) {
|
|
32229
32229
|
return new McpServer({
|
|
32230
32230
|
name: options?.name ?? "gogcli",
|
package/dist/lib.js
CHANGED
|
@@ -30970,7 +30970,7 @@ async function run(args, options = {}) {
|
|
|
30970
30970
|
settled = true;
|
|
30971
30971
|
if (err.code === "ENOENT") {
|
|
30972
30972
|
reject(new Error(
|
|
30973
|
-
"gog executable not found. Install gogcli (https://github.com/
|
|
30973
|
+
"gog executable not found. Install gogcli (https://github.com/openclaw/gogcli) or set GOG_PATH in your MCP client config to the absolute binary path (run `which gog` in a terminal to find it)."
|
|
30974
30974
|
));
|
|
30975
30975
|
return;
|
|
30976
30976
|
}
|
|
@@ -32136,7 +32136,7 @@ function registerTasksTools(server) {
|
|
|
32136
32136
|
}
|
|
32137
32137
|
|
|
32138
32138
|
// src/server.ts
|
|
32139
|
-
var VERSION = true ? "2.0.
|
|
32139
|
+
var VERSION = true ? "2.0.11" : "0.0.0";
|
|
32140
32140
|
function createServer(options) {
|
|
32141
32141
|
return new McpServer({
|
|
32142
32142
|
name: options?.name ?? "gogcli",
|
package/manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"manifest_version": "0.3",
|
|
4
4
|
"name": "gogcli-mcp",
|
|
5
5
|
"display_name": "gogcli",
|
|
6
|
-
"version": "2.0.
|
|
6
|
+
"version": "2.0.11",
|
|
7
7
|
"description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Chris Hall",
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"source": "github",
|
|
8
8
|
"subfolder": "packages/gogcli-mcp"
|
|
9
9
|
},
|
|
10
|
-
"version": "2.0.
|
|
10
|
+
"version": "2.0.11",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "gogcli-mcp",
|
|
15
|
-
"version": "2.0.
|
|
15
|
+
"version": "2.0.11",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
18
18
|
},
|
package/skills/gogcli/SKILL.md
CHANGED
|
@@ -5,13 +5,13 @@ description: Use when the user asks to read, write, or manage Google Sheets. Als
|
|
|
5
5
|
|
|
6
6
|
# gogcli-mcp
|
|
7
7
|
|
|
8
|
-
MCP server wrapping [gogcli](https://github.com/
|
|
8
|
+
MCP server wrapping [gogcli](https://github.com/openclaw/gogcli) — provides Claude with access to Google Sheets (and a scaffold for Gmail, Calendar, Drive, and more).
|
|
9
9
|
|
|
10
10
|
- **Source:** [github.com/chrischall/gogcli-mcp](https://github.com/chrischall/gogcli-mcp)
|
|
11
11
|
|
|
12
12
|
## Requirements
|
|
13
13
|
|
|
14
|
-
- [gogcli](https://github.com/
|
|
14
|
+
- [gogcli](https://github.com/openclaw/gogcli) installed and authenticated (`gog --help` works in your shell)
|
|
15
15
|
- Node.js 18 or later
|
|
16
16
|
|
|
17
17
|
## Setup
|
package/src/runner.ts
CHANGED
|
@@ -151,7 +151,7 @@ export async function run(args: string[], options: RunOptions = {}): Promise<str
|
|
|
151
151
|
settled = true;
|
|
152
152
|
if ((err as NodeJS.ErrnoException).code === 'ENOENT') {
|
|
153
153
|
reject(new Error(
|
|
154
|
-
'gog executable not found. Install gogcli (https://github.com/
|
|
154
|
+
'gog executable not found. Install gogcli (https://github.com/openclaw/gogcli) ' +
|
|
155
155
|
'or set GOG_PATH in your MCP client config to the absolute binary path ' +
|
|
156
156
|
'(run `which gog` in a terminal to find it).',
|
|
157
157
|
));
|