gogcli-mcp 2.2.0 → 2.3.0
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/dist/index.js +1 -1
- package/dist/lib.js +3 -1
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/src/lib.ts +1 -1
- package/src/runner.ts +8 -0
|
@@ -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.
|
|
10
|
+
"version": "2.3.0"
|
|
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.
|
|
18
|
+
"version": "2.3.0",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
package/dist/index.js
CHANGED
|
@@ -32322,7 +32322,7 @@ function registerTasksTools(server2) {
|
|
|
32322
32322
|
}
|
|
32323
32323
|
|
|
32324
32324
|
// src/server.ts
|
|
32325
|
-
var VERSION = true ? "2.
|
|
32325
|
+
var VERSION = true ? "2.3.0" : "0.0.0";
|
|
32326
32326
|
function createServer(options) {
|
|
32327
32327
|
return new McpServer({
|
|
32328
32328
|
name: options?.name ?? "gogcli",
|
package/dist/lib.js
CHANGED
|
@@ -30859,6 +30859,7 @@ var EMPTY_COMPLETION_RESULT = {
|
|
|
30859
30859
|
import { spawn } from "node:child_process";
|
|
30860
30860
|
import { delimiter } from "node:path";
|
|
30861
30861
|
var TIMEOUT_MS = 3e4;
|
|
30862
|
+
var MIN_GOG_VERSION = "0.19.0";
|
|
30862
30863
|
function envOrUndefined(key) {
|
|
30863
30864
|
const value = process.env[key];
|
|
30864
30865
|
if (!value || value.startsWith("${")) return void 0;
|
|
@@ -32234,7 +32235,7 @@ function registerTasksTools(server) {
|
|
|
32234
32235
|
}
|
|
32235
32236
|
|
|
32236
32237
|
// src/server.ts
|
|
32237
|
-
var VERSION = true ? "2.
|
|
32238
|
+
var VERSION = true ? "2.3.0" : "0.0.0";
|
|
32238
32239
|
function createServer(options) {
|
|
32239
32240
|
return new McpServer({
|
|
32240
32241
|
name: options?.name ?? "gogcli",
|
|
@@ -32256,6 +32257,7 @@ function createBaseServer(options) {
|
|
|
32256
32257
|
return server;
|
|
32257
32258
|
}
|
|
32258
32259
|
export {
|
|
32260
|
+
MIN_GOG_VERSION,
|
|
32259
32261
|
VERSION,
|
|
32260
32262
|
accountParam,
|
|
32261
32263
|
createBaseServer,
|
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.
|
|
6
|
+
"version": "2.3.0",
|
|
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.
|
|
10
|
+
"version": "2.3.0",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "gogcli-mcp",
|
|
15
|
-
"version": "2.
|
|
15
|
+
"version": "2.3.0",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
18
18
|
},
|
package/src/lib.ts
CHANGED
|
@@ -13,7 +13,7 @@ export {
|
|
|
13
13
|
registerSlidesTools,
|
|
14
14
|
registerTasksTools,
|
|
15
15
|
} from './server.js';
|
|
16
|
-
export { run } from './runner.js';
|
|
16
|
+
export { run, MIN_GOG_VERSION } from './runner.js';
|
|
17
17
|
export type { RunOptions, Spawner } from './runner.js';
|
|
18
18
|
export {
|
|
19
19
|
accountParam,
|
package/src/runner.ts
CHANGED
|
@@ -17,6 +17,14 @@ export interface RunOptions {
|
|
|
17
17
|
|
|
18
18
|
const TIMEOUT_MS = 30_000;
|
|
19
19
|
|
|
20
|
+
// Minimum gogcli (`gog`) binary version this wrapper's tools assume. Some tools
|
|
21
|
+
// pass flags/subcommands that only exist in newer gog, so bump this whenever a
|
|
22
|
+
// change starts relying on a newer gog feature — and label that PR `gogcli-bump`
|
|
23
|
+
// so the requirement change is surfaced in the release notes (see
|
|
24
|
+
// .github/release.yml). This is the single source of truth for the required
|
|
25
|
+
// version; keep the README/CLAUDE.md mention in sync.
|
|
26
|
+
export const MIN_GOG_VERSION = '0.19.0';
|
|
27
|
+
|
|
20
28
|
// Treat unresolved .mcpb placeholders ("${user_config.gog_path}") and empty
|
|
21
29
|
// strings the same as an unset env var. When an optional .mcpb user_config
|
|
22
30
|
// field is left blank, some clients pass the literal placeholder text through
|