@spencerbeggs/claude-coordinator-mcp 0.1.2 → 0.1.4

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.
Files changed (2) hide show
  1. package/client.js +2 -1
  2. package/package.json +4 -4
package/client.js CHANGED
@@ -9,8 +9,9 @@ import WebSocket from "ws";
9
9
  * @public
10
10
  */
11
11
  function createCoordinatorClient(options = {}) {
12
+ const url = options.url ?? DEFAULT_URL;
12
13
  const wsClient = createWSClient({
13
- url: options.url ?? DEFAULT_URL,
14
+ url,
14
15
  WebSocket
15
16
  });
16
17
  const trpc = createTRPCClient({ links: [wsLink({ client: wsClient })] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spencerbeggs/claude-coordinator-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "description": "MCP stdio bridge for Claude Coordinator",
6
6
  "keywords": [
@@ -34,12 +34,12 @@
34
34
  "claude-coordinator-mcp": "bin/claude-coordinator-mcp.js"
35
35
  },
36
36
  "dependencies": {
37
- "@modelcontextprotocol/sdk": "^1.29.0",
37
+ "@modelcontextprotocol/sdk": "^1.30.0",
38
38
  "@spencerbeggs/claude-coordinator-core": "0.1.0",
39
- "@spencerbeggs/claude-coordinator-server": "0.1.2",
39
+ "@spencerbeggs/claude-coordinator-server": "0.1.3",
40
40
  "@trpc/client": "^11.18.0",
41
41
  "@trpc/server": "^11.18.0",
42
- "ws": "^8.21.1",
42
+ "ws": "^8.21.3",
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "engines": {