@chatpanel/events 0.89.1 → 0.89.2
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/mcp-client.js +1 -1
- package/mcp-errors.js +1 -1
- package/package.json +1 -1
package/mcp-client.js
CHANGED
|
@@ -111,7 +111,7 @@ export class McpClient {
|
|
|
111
111
|
'Otherwise check that the command + args run in a terminal.',
|
|
112
112
|
);
|
|
113
113
|
}
|
|
114
|
-
throw new Error(`Can't reach the ChatPanel Bridge for local MCP (${e.message}). Install ChatPanel — the gateway brings the bridge (npm i -g @chatpanel/gateway
|
|
114
|
+
throw new Error(`Can't reach the ChatPanel Bridge for local MCP (${e.message}). Install ChatPanel — the gateway brings the bridge (`npm i -g @chatpanel/gateway`, then `chatpanel-gateway --install`) — or start one with \`npx @chatpanel/bridge\`.`);
|
|
115
115
|
}
|
|
116
116
|
if (message.id == null) return null; // notification → 202, no body
|
|
117
117
|
if (!res.ok) throw new Error(`Bridge MCP HTTP ${res.status}: ${(await res.text().catch(() => '')).slice(0, 200)}`);
|
package/mcp-errors.js
CHANGED
|
@@ -45,7 +45,7 @@ const RULES = [
|
|
|
45
45
|
explain: () => ({
|
|
46
46
|
summary: 'The ChatPanel Bridge is not running.',
|
|
47
47
|
detail: 'Local MCP servers are launched by the bridge, so nothing can start without it.',
|
|
48
|
-
fix: 'Install ChatPanel — the gateway, which brings the bridge (`npm i -g @chatpanel/gateway
|
|
48
|
+
fix: 'Install ChatPanel — the gateway, which brings the bridge (`npm i -g @chatpanel/gateway`, then `chatpanel-gateway --install`; or https://dl.chatpanel.net/install.sh) — or start a bridge with `npx @chatpanel/bridge`, then try again.',
|
|
49
49
|
blame: 'setup',
|
|
50
50
|
}),
|
|
51
51
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatpanel/events",
|
|
3
|
-
"version": "0.89.
|
|
3
|
+
"version": "0.89.2",
|
|
4
4
|
"description": "The canonical ChatPanel event-log and capability contracts \u2014 typed durable facts, clock-free deterministic linearization, schema upcasting, and the invariants the replay harness asserts. Pure, dependency-free ESM shared by the ChatPanel extension, gateway and bridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|