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.
@@ -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"
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.10",
18
+ "version": "2.0.11",
19
19
  "author": {
20
20
  "name": "Chris Hall"
21
21
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gogcli-mcp",
3
3
  "displayName": "gogcli",
4
- "version": "2.0.10",
4
+ "version": "2.0.11",
5
5
  "description": "Google Sheets (and more) for Claude via gogcli — read, write, and manage spreadsheets",
6
6
  "author": {
7
7
  "name": "Chris Hall",
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/steipete/gogcli). Includes 52 tools across 8 services: Sheets, Docs, Gmail, Calendar, Drive, Tasks, Contacts, and Auth.
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/steipete/gogcli) installed and authenticated
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/steipete/gogcli) — provides Claude with access to Google Sheets, Docs, Gmail, Calendar, Drive, Tasks, Contacts, and Auth.
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/steipete/gogcli) installed and authenticated
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/steipete/gogcli) or set GOG_PATH in your MCP client config to the absolute binary path (run `which gog` in a terminal to find it)."
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.10" : "0.0.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/steipete/gogcli) or set GOG_PATH in your MCP client config to the absolute binary path (run `which gog` in a terminal to find it)."
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.10" : "0.0.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.10",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gogcli-mcp",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "mcpName": "io.github.chrischall/gogcli-mcp",
5
5
  "description": "MCP server wrapping gogcli for Google service access",
6
6
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
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",
10
+ "version": "2.0.11",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "gogcli-mcp",
15
- "version": "2.0.10",
15
+ "version": "2.0.11",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },
@@ -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/steipete/gogcli) — provides Claude with access to Google Sheets (and a scaffold for Gmail, Calendar, Drive, and more).
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/steipete/gogcli) installed and authenticated (`gog --help` works in your shell)
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/steipete/gogcli) ' +
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
  ));