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 +3 -3
- package/dist/server.js +4169 -0
- package/package.json +12 -4
- package/src/cli.mjs +20 -0
- package/src/identity.ts +114 -0
- package/src/profile-store.ts +55 -0
- package/src/read-cursor.ts +60 -0
- package/src/server.ts +182 -104
package/README.md
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
### 1. Install
|
|
8
8
|
|
|
9
|
-
> **
|
|
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 --
|
|
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)
|