gogcli-mcp 2.27.0 → 2.27.1

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/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.27.0",
6
+ "version": "2.27.1",
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/mint.yaml CHANGED
@@ -86,7 +86,7 @@ dependencies:
86
86
  # nine pins too.
87
87
  - kind: github-release
88
88
  repo: openclaw/gogcli
89
- tag: v0.38.1
89
+ tag: v0.38.3
90
90
  asset: "gogcli_*_linux_amd64.tar.gz"
91
91
  bin: [gog]
92
92
  state:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gogcli-mcp",
3
- "version": "2.27.0",
3
+ "version": "2.27.1",
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>",
@@ -41,12 +41,12 @@
41
41
  "test:coverage": "vitest run --coverage"
42
42
  },
43
43
  "dependencies": {
44
- "@chrischall/mcp-utils": "^0.15.0",
44
+ "@chrischall/mcp-utils": "^0.17.1",
45
45
  "@modelcontextprotocol/sdk": "^1.30.0",
46
46
  "zod": "^4.4.3"
47
47
  },
48
48
  "devDependencies": {
49
- "@types/node": "^26.2.0",
49
+ "@types/node": "^26.4.0",
50
50
  "@vitest/coverage-v8": "^4.1.8",
51
51
  "esbuild": "^0.28.2",
52
52
  "typescript": "^7.0.2",
package/server.json CHANGED
@@ -7,12 +7,12 @@
7
7
  "source": "github",
8
8
  "subfolder": "packages/gogcli-mcp"
9
9
  },
10
- "version": "2.27.0",
10
+ "version": "2.27.1",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "gogcli-mcp",
15
- "version": "2.27.0",
15
+ "version": "2.27.1",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },
package/src/runner.ts CHANGED
@@ -217,7 +217,7 @@ const TIMEOUT_MS = 30_000;
217
217
  // so the requirement change is surfaced in the release notes (see
218
218
  // .github/release.yml). This is the single source of truth for the required
219
219
  // version; keep the README/CLAUDE.md mention in sync.
220
- export const MIN_GOG_VERSION = '0.38.1';
220
+ export const MIN_GOG_VERSION = '0.38.3';
221
221
 
222
222
  // Interpret the GOG_READONLY kill-switch. `readEnvVar` already treats blank
223
223
  // values, 'undefined'/'null' sentinels, and unresolved .mcpb placeholders
package/src/worker.ts CHANGED
@@ -38,7 +38,7 @@ import { gogAuth, CONNECTOR_INSTRUCTIONS, type GogProps } from './connector-auth
38
38
  // connector with all ~360 tools at once. Add whichever paths you want as separate
39
39
  // connectors in claude.ai (each authorizes with the same connector key).
40
40
 
41
- const VERSION = '2.27.0'; // x-release-please-version
41
+ const VERSION = '2.27.1'; // x-release-please-version
42
42
 
43
43
  // Build an McpAgent subclass whose init() registers `registrars` onto its server,
44
44
  // each handler wrapped in the ALS scope carrying the per-session Fly executor.
@@ -90,8 +90,14 @@ describe('published tool counts match the registrars', () => {
90
90
  expect(rows.length).toBeGreaterThan(0);
91
91
  const service = (row: string) => row.toLowerCase().replace(/[^a-z]/g, '');
92
92
  // Map a table label onto the gog_<service>_ prefix its tools carry.
93
+ // Only labels whose normalised form differs from their tool prefix belong
94
+ // here. "Apps Script" normalises to `appsscript` but the tools are
95
+ // `gog_appscript_`, so that mapping is load-bearing. A `discoveryapi` entry
96
+ // was not: both tables label the row "API", which normalises to `api` and
97
+ // already resolves — so it never matched and only implied a label that
98
+ // does not exist.
93
99
  const prefixFor: Record<string, string> = {
94
- appsscript: 'appscript', discoveryapi: 'api',
100
+ appsscript: 'appscript',
95
101
  };
96
102
  for (const row of rows) {
97
103
  const stated = Number(row[2] ?? row[3]);