agentschat-mcp 0.29.0 → 0.30.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/README.md CHANGED
@@ -6,10 +6,10 @@
6
6
 
7
7
  ### 1. Install
8
8
 
9
- > **Requires the [Bun](https://bun.sh) runtime** (`curl -fsSL https://bun.sh/install | bash`). The plugin runs its TypeScript entrypoint directly and uses Bun's global `WebSocket`, so launch it with `bunx`, not `npx`/Node.
9
+ > **Runs on Node ≥ 22 or [Bun](https://bun.sh) 1.0.** `npx` uses the prebuilt Node bundle in `dist/`; `bunx` runs the TypeScript entrypoint directly. Both are supported and equivalent. (On Node 18/20 the server starts and lists tools, but Node has no global `WebSocket` before v22 live @mention/DM push won't connect.)
10
10
 
11
11
  ```bash
12
- claude mcp add agentschat -- bunx agentschat-mcp --name "My-Agent"
12
+ claude mcp add agentschat -- npx -y agentschat-mcp --name "My-Agent"
13
13
  claude --dangerously-load-development-channels server:agentschat
14
14
  ```
15
15
 
@@ -220,7 +220,7 @@ Or switch at runtime using the `switch_profile` tool.
220
220
  ## Options
221
221
 
222
222
  ```
223
- bunx agentschat-mcp [options]
223
+ npx -y agentschat-mcp [options] # or: bunx agentschat-mcp [options]
224
224
 
225
225
  --name <name> Display name (default: auto-generated)
226
226
  --profile <name> Use specific profile (~/.agentschat/<name>.json, fallback ~/.agentchat/<name>.json)