@burtson-labs/agent-core 1.6.24 → 1.6.26

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.
@@ -53,6 +53,7 @@ export interface McpAuthFailure {
53
53
  export declare const AUTH_RECOVERY_MARKER = "[auth-recovery]";
54
54
  /** True when a tool result carries auth-recovery guidance from this module. */
55
55
  export declare function isAuthRecoveryGuidance(text: string): boolean;
56
+ export declare function looksLikeGoogleAuthFailure(message: string): boolean;
56
57
  /**
57
58
  * Does this MCP failure look like an expired or rejected credential?
58
59
  *
@@ -1 +1 @@
1
- {"version":3,"file":"authFailure.d.ts","sourceRoot":"","sources":["../../src/mcp/authFailure.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAqBH,MAAM,WAAW,cAAc;IAC7B,oDAAoD;IACpD,MAAM,EAAE,MAAM,CAAC;IACf,+EAA+E;IAC/E,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;OAUG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,oBAAoB,oBAAoB,CAAC;AAEtD,+EAA+E;AAC/E,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAE5D;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAG7D;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,cAAc,GAAG,MAAM,CAuBtE;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAChC,cAAc,EAAE,MAAM,EACtB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,MAAM,EACf,gBAAgB,CAAC,EAAE,MAAM,GACxB,MAAM,CAKR"}
1
+ {"version":3,"file":"authFailure.d.ts","sourceRoot":"","sources":["../../src/mcp/authFailure.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAkCH,MAAM,WAAW,cAAc;IAC7B,oDAAoD;IACpD,MAAM,EAAE,MAAM,CAAC;IACf,+EAA+E;IAC/E,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;OAUG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,oBAAoB,oBAAoB,CAAC;AAEtD,+EAA+E;AAC/E,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAE5D;AAgBD,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAEnE;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAG7D;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,cAAc,GAAG,MAAM,CA2CtE;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAChC,cAAc,EAAE,MAAM,EACtB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,MAAM,EACf,gBAAgB,CAAC,EAAE,MAAM,GACxB,MAAM,CAKR"}
@@ -26,6 +26,7 @@
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  exports.AUTH_RECOVERY_MARKER = void 0;
28
28
  exports.isAuthRecoveryGuidance = isAuthRecoveryGuidance;
29
+ exports.looksLikeGoogleAuthFailure = looksLikeGoogleAuthFailure;
29
30
  exports.looksLikeAuthFailure = looksLikeAuthFailure;
30
31
  exports.describeMcpAuthFailure = describeMcpAuthFailure;
31
32
  exports.formatMcpToolError = formatMcpToolError;
@@ -45,7 +46,20 @@ const AUTH_FAILURE_PATTERNS = [
45
46
  /\b(?:401|403)\b|\bunauthori[sz]ed\b|\bforbidden\b/i,
46
47
  /\bauthentication (?:failed|required|error)\b/i,
47
48
  /\bnot authenticated\b|\bre-?authenticat/i,
48
- /\binvalid_grant\b|\binvalid_token\b|\btoken_expired\b/i
49
+ /\binvalid_grant\b|\binvalid_token\b|\btoken_expired\b/i,
50
+ // An error that names a refresh token is an auth failure — Google's is
51
+ // "refused the refresh token", which none of the verb-specific patterns
52
+ // above catch on their own.
53
+ /\brefresh[_ ]?token\b/i,
54
+ // "No connection" preconditions: the credential isn't expired, it was never
55
+ // set up (or was disconnected). Recovery is identical — connect it — so this
56
+ // routes through the same auth-recovery guidance. Google's is "No Google
57
+ // connection matches the request … Visit …/account/google-connections to
58
+ // connect one." Verb-agnostic patterns above miss it because nothing is
59
+ // "expired" or "rejected."
60
+ /\bno\b[\s\S]{0,40}\bconnection\b[\s\S]{0,30}\b(?:matches|found|configured|exists|available)\b/i,
61
+ /\b(?:account|workspace)\b[\s\S]{0,30}\b(?:not connected|isn'?t connected|needs? to be connected)\b/i,
62
+ /\/account\/google-connections\b/i
49
63
  ];
50
64
  /**
51
65
  * Stable sentinel embedded in every auth-recovery guidance message.
@@ -62,6 +76,22 @@ exports.AUTH_RECOVERY_MARKER = '[auth-recovery]';
62
76
  function isAuthRecoveryGuidance(text) {
63
77
  return typeof text === 'string' && text.includes(exports.AUTH_RECOVERY_MARKER);
64
78
  }
79
+ /**
80
+ * Signals that an auth failure is specifically a GOOGLE Workspace token, even
81
+ * when it surfaces through a Bandit-authenticated MCP server.
82
+ *
83
+ * Why this matters: a server like `burtson-labs` authenticates its transport
84
+ * with the user's Bandit key (so the per-server hint says `/login`), but then
85
+ * uses the user's stored GOOGLE refresh token to reach Gmail/Drive/Calendar.
86
+ * When GOOGLE rejects that token, `/login` (re-auth Bandit) does nothing — the
87
+ * fix is `/mcp google connect` (re-authorize Google). The transport is fine;
88
+ * the downstream Google grant is what expired. The error text is the only place
89
+ * that distinguishes the two, so we read it.
90
+ */
91
+ const GOOGLE_AUTH_SIGNALS = /\b(google|gmail|googleemail|workspace|refresh token)\b/i;
92
+ function looksLikeGoogleAuthFailure(message) {
93
+ return !!message && looksLikeAuthFailure(message) && GOOGLE_AUTH_SIGNALS.test(message);
94
+ }
65
95
  /**
66
96
  * Does this MCP failure look like an expired or rejected credential?
67
97
  *
@@ -90,27 +120,38 @@ function looksLikeAuthFailure(message) {
90
120
  */
91
121
  function describeMcpAuthFailure(failure) {
92
122
  const { server, original } = failure;
93
- const command = failure.reconnectCommand ?? `/mcp connect ${server}`;
94
- return [
95
- `${exports.AUTH_RECOVERY_MARKER} Authentication for the "${server}" MCP server has expired or been rejected.`,
123
+ // Error content wins over the server's static auth config: a Google failure
124
+ // needs `/mcp google connect` regardless of how the server's transport
125
+ // authenticates. Otherwise fall back to the config-derived hint (e.g.
126
+ // `/login` for Bandit-auth servers), then the generic default.
127
+ const isGoogle = looksLikeGoogleAuthFailure(original);
128
+ const command = isGoogle
129
+ ? '/mcp google connect (re-authorize Google in the browser — pick the correct account)'
130
+ : (failure.reconnectCommand ?? `/mcp connect ${server}`);
131
+ const lines = [
132
+ `${exports.AUTH_RECOVERY_MARKER} The "${server}" MCP server can't reach its data — its connection needs (re)authorizing.`,
96
133
  '',
97
134
  `Underlying error: ${original}`,
98
135
  '',
99
- 'This is RECOVERABLE and usually takes under a minute the connection is',
100
- 'configured correctly, its credential just needs refreshing. Do not treat',
136
+ 'This is RECOVERABLE and usually takes under a minute. Do not treat',
101
137
  `"${server}" as permanently unavailable.`,
102
138
  '',
103
139
  'Do this now, in order:',
104
- `1. Tell the user plainly that the "${server}" connection needs re-authorizing,`,
140
+ `1. Tell the user plainly that the "${server}" connection needs (re)authorizing,`,
105
141
  ` and that they can fix it by running: ${command}`,
106
142
  ` Present that command as inline code in one sentence — do not wrap it in a`,
107
- ` code fence or put it on its own line.`,
108
- '2. Do NOT silently switch to another route to get the same data. If you can',
109
- ' reach it another way, say what you are about to do and why FIRST — a user',
110
- ' who is not told their connection expired will assume it worked.',
111
- '3. If the rest of the task does not depend on this server, continue with it',
112
- ' and report the expired connection alongside your result.'
113
- ].join('\n');
143
+ ` code fence or put it on its own line. Prefer that CLI command over any web`,
144
+ ` URL in the error above; the user is in the terminal.`,
145
+ ];
146
+ if (isGoogle) {
147
+ // The error carries a workspace/account filter (e.g. workspace=primary). If
148
+ // the user just connected but under a different label, the connection
149
+ // exists but doesn't match — `/mcp google list` surfaces that instead of
150
+ // sending them in a reconnect loop.
151
+ lines.push(` If they say they JUST connected, have them run \`/mcp google list\` first —`, ` the account may be connected under a different workspace than the tool asked for.`);
152
+ }
153
+ lines.push('2. Do NOT silently switch to another route to get the same data. If you can', ' reach it another way, say what you are about to do and why FIRST — a user', ' who is not told the connection is down will assume it worked.', '3. If the rest of the task does not depend on this server, continue with it', ' and report the broken connection alongside your result.');
154
+ return lines.join('\n');
114
155
  }
115
156
  /**
116
157
  * Wrap an MCP invocation error, upgrading auth-shaped failures into recovery
@@ -1 +1 @@
1
- {"version":3,"file":"authFailure.js","sourceRoot":"","sources":["../../src/mcp/authFailure.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;;;AAqDH,wDAEC;AASD,oDAGC;AAeD,wDAuBC;AAMD,gDAUC;AAvHD;;;;;;;GAOG;AACH,MAAM,qBAAqB,GAAa;IACtC,qCAAqC;IACrC,kCAAkC;IAClC,mGAAmG;IACnG,8DAA8D;IAC9D,oDAAoD;IACpD,+CAA+C;IAC/C,0CAA0C;IAC1C,wDAAwD;CACzD,CAAC;AAqBF;;;;;;;;;GASG;AACU,QAAA,oBAAoB,GAAG,iBAAiB,CAAC;AAEtD,+EAA+E;AAC/E,SAAgB,sBAAsB,CAAC,IAAY;IACjD,OAAO,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,4BAAoB,CAAC,CAAC;AACzE,CAAC;AAED;;;;;;GAMG;AACH,SAAgB,oBAAoB,CAAC,OAAe;IAClD,IAAI,CAAC,OAAO,EAAE,CAAC;QAAA,OAAO,KAAK,CAAC;IAAA,CAAC;IAC7B,OAAO,qBAAqB,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;AAC9D,CAAC;AAED;;;;;;;;;;;;GAYG;AACH,SAAgB,sBAAsB,CAAC,OAAuB;IAC5D,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC;IACrC,MAAM,OAAO,GAAG,OAAO,CAAC,gBAAgB,IAAI,gBAAgB,MAAM,EAAE,CAAC;IACrE,OAAO;QACL,GAAG,4BAAoB,4BAA4B,MAAM,4CAA4C;QACrG,EAAE;QACF,qBAAqB,QAAQ,EAAE;QAC/B,EAAE;QACF,0EAA0E;QAC1E,0EAA0E;QAC1E,IAAI,MAAM,+BAA+B;QACzC,EAAE;QACF,wBAAwB;QACxB,sCAAsC,MAAM,oCAAoC;QAChF,2CAA2C,OAAO,EAAE;QACpD,8EAA8E;QAC9E,0CAA0C;QAC1C,6EAA6E;QAC7E,8EAA8E;QAC9E,oEAAoE;QACpE,6EAA6E;QAC7E,6DAA6D;KAC9D,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AACf,CAAC;AAED;;;GAGG;AACH,SAAgB,kBAAkB,CAChC,cAAsB,EACtB,MAAc,EACd,OAAe,EACf,gBAAyB;IAEzB,IAAI,oBAAoB,CAAC,OAAO,CAAC,EAAE,CAAC;QAClC,OAAO,sBAAsB,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,gBAAgB,EAAE,CAAC,CAAC;IACjF,CAAC;IACD,OAAO,kBAAkB,cAAc,KAAK,OAAO,EAAE,CAAC;AACxD,CAAC"}
1
+ {"version":3,"file":"authFailure.js","sourceRoot":"","sources":["../../src/mcp/authFailure.ts"],"names":[],"mappings":"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"}
@@ -12,7 +12,7 @@
12
12
  */
13
13
  export { McpClientPool, fingerprintServerConfig, type McpClientPoolOptions, type McpTrustGate, type McpToolsDiscoveredCallback, type RemoteToolDef as McpRemoteToolDef } from './clientPool';
14
14
  export { mcpToolToAgentTool, getAllMcpAgentTools } from './toolAdapter';
15
- export { looksLikeAuthFailure, describeMcpAuthFailure, formatMcpToolError, type McpAuthFailure } from './authFailure';
15
+ export { looksLikeAuthFailure, looksLikeGoogleAuthFailure, describeMcpAuthFailure, formatMcpToolError, type McpAuthFailure } from './authFailure';
16
16
  export { serveBanditMcp } from './server';
17
17
  export { shouldActivateServer, effectiveTriggers, inferProviderHint } from './activation';
18
18
  export type { McpServerConfig, McpServersFile, McpServerStatus, McpServerSnapshot } from './types';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EACL,aAAa,EACb,uBAAuB,EACvB,KAAK,oBAAoB,EACzB,KAAK,YAAY,EACjB,KAAK,0BAA0B,EAC/B,KAAK,aAAa,IAAI,gBAAgB,EACvC,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,KAAK,cAAc,EAAE,MAAM,eAAe,CAAC;AACtH,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EACL,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,EAClB,MAAM,cAAc,CAAC;AACtB,YAAY,EACV,eAAe,EACf,cAAc,EACd,eAAe,EACf,iBAAiB,EAClB,MAAM,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EACL,aAAa,EACb,uBAAuB,EACvB,KAAK,oBAAoB,EACzB,KAAK,YAAY,EACjB,KAAK,0BAA0B,EAC/B,KAAK,aAAa,IAAI,gBAAgB,EACvC,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,KAAK,cAAc,EAAE,MAAM,eAAe,CAAC;AAClJ,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EACL,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,EAClB,MAAM,cAAc,CAAC;AACtB,YAAY,EACV,eAAe,EACf,cAAc,EACd,eAAe,EACf,iBAAiB,EAClB,MAAM,SAAS,CAAC"}
package/dist/mcp/index.js CHANGED
@@ -12,7 +12,7 @@
12
12
  * pool gets zero behavior change. No backward-compat risk.
13
13
  */
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.inferProviderHint = exports.effectiveTriggers = exports.shouldActivateServer = exports.serveBanditMcp = exports.formatMcpToolError = exports.describeMcpAuthFailure = exports.looksLikeAuthFailure = exports.getAllMcpAgentTools = exports.mcpToolToAgentTool = exports.fingerprintServerConfig = exports.McpClientPool = void 0;
15
+ exports.inferProviderHint = exports.effectiveTriggers = exports.shouldActivateServer = exports.serveBanditMcp = exports.formatMcpToolError = exports.describeMcpAuthFailure = exports.looksLikeGoogleAuthFailure = exports.looksLikeAuthFailure = exports.getAllMcpAgentTools = exports.mcpToolToAgentTool = exports.fingerprintServerConfig = exports.McpClientPool = void 0;
16
16
  var clientPool_1 = require("./clientPool");
17
17
  Object.defineProperty(exports, "McpClientPool", { enumerable: true, get: function () { return clientPool_1.McpClientPool; } });
18
18
  Object.defineProperty(exports, "fingerprintServerConfig", { enumerable: true, get: function () { return clientPool_1.fingerprintServerConfig; } });
@@ -21,6 +21,7 @@ Object.defineProperty(exports, "mcpToolToAgentTool", { enumerable: true, get: fu
21
21
  Object.defineProperty(exports, "getAllMcpAgentTools", { enumerable: true, get: function () { return toolAdapter_1.getAllMcpAgentTools; } });
22
22
  var authFailure_1 = require("./authFailure");
23
23
  Object.defineProperty(exports, "looksLikeAuthFailure", { enumerable: true, get: function () { return authFailure_1.looksLikeAuthFailure; } });
24
+ Object.defineProperty(exports, "looksLikeGoogleAuthFailure", { enumerable: true, get: function () { return authFailure_1.looksLikeGoogleAuthFailure; } });
24
25
  Object.defineProperty(exports, "describeMcpAuthFailure", { enumerable: true, get: function () { return authFailure_1.describeMcpAuthFailure; } });
25
26
  Object.defineProperty(exports, "formatMcpToolError", { enumerable: true, get: function () { return authFailure_1.formatMcpToolError; } });
26
27
  var server_1 = require("./server");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAEH,2CAOsB;AANpB,2GAAA,aAAa,OAAA;AACb,qHAAA,uBAAuB,OAAA;AAMzB,6CAAwE;AAA/D,iHAAA,kBAAkB,OAAA;AAAE,kHAAA,mBAAmB,OAAA;AAChD,6CAAsH;AAA7G,mHAAA,oBAAoB,OAAA;AAAE,qHAAA,sBAAsB,OAAA;AAAE,iHAAA,kBAAkB,OAAA;AACzE,mCAA0C;AAAjC,wGAAA,cAAc,OAAA;AACvB,2CAIsB;AAHpB,kHAAA,oBAAoB,OAAA;AACpB,+GAAA,iBAAiB,OAAA;AACjB,+GAAA,iBAAiB,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAEH,2CAOsB;AANpB,2GAAA,aAAa,OAAA;AACb,qHAAA,uBAAuB,OAAA;AAMzB,6CAAwE;AAA/D,iHAAA,kBAAkB,OAAA;AAAE,kHAAA,mBAAmB,OAAA;AAChD,6CAAkJ;AAAzI,mHAAA,oBAAoB,OAAA;AAAE,yHAAA,0BAA0B,OAAA;AAAE,qHAAA,sBAAsB,OAAA;AAAE,iHAAA,kBAAkB,OAAA;AACrG,mCAA0C;AAAjC,wGAAA,cAAc,OAAA;AACvB,2CAIsB;AAHpB,kHAAA,oBAAoB,OAAA;AACpB,+GAAA,iBAAiB,OAAA;AACjB,+GAAA,iBAAiB,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burtson-labs/agent-core",
3
- "version": "1.6.24",
3
+ "version": "1.6.26",
4
4
  "author": {
5
5
  "name": "Burtson Labs",
6
6
  "email": "team@burtson.ai",