@dolusoft/claude-collab 1.7.0 → 1.7.1

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/README.md +8 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,10 +31,14 @@ Keep this terminal open. The hub routes messages between everyone.
31
31
  ### Step 2 — Add to Claude Code (each machine, one time)
32
32
 
33
33
  ```bash
34
- claude mcp add claude-collab -- npx -y @dolusoft/claude-collab --name alice --server 192.168.1.5:9999
34
+ claude mcp add claude-collab -- npx -y @dolusoft/claude-collab --name <your-name> --server <hub-ip>:<hub-port>
35
35
  ```
36
36
 
37
- Replace `alice` with your name and `192.168.1.5:9999` with the hub machine's IP and port.
37
+ | Placeholder | What to put |
38
+ |-------------|-------------|
39
+ | `<your-name>` | Your identifier on the network (e.g. `alice`, `backend`, `frontend`) |
40
+ | `<hub-ip>` | IP address of the machine running the hub (e.g. `192.168.1.5`) |
41
+ | `<hub-port>` | Port the hub is listening on (e.g. `9999`) |
38
42
 
39
43
  > Your name and server address are saved permanently in Claude Code's MCP config. Every time Claude Code opens, it connects automatically — you never need to reconfigure.
40
44
 
@@ -44,10 +48,10 @@ Replace `alice` with your name and `192.168.1.5:9999` with the hub machine's IP
44
48
  npm install -g @dolusoft/claude-collab
45
49
 
46
50
  # Hub:
47
- claude-collab --hub --port 9999
51
+ claude-collab --hub --port <hub-port>
48
52
 
49
53
  # Client (add to Claude Code):
50
- claude mcp add claude-collab -- claude-collab --name alice --server 192.168.1.5:9999
54
+ claude mcp add claude-collab -- claude-collab --name <your-name> --server <hub-ip>:<hub-port>
51
55
  ```
52
56
 
53
57
  ## MCP Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolusoft/claude-collab",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Real-time team collaboration between Claude Code terminals via MCP",
5
5
  "type": "module",
6
6
  "main": "./dist/mcp-main.js",