@filipc77/cowrite 0.4.25 → 0.4.26
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,10 +38,18 @@ A single Node.js process runs both the HTTP/WebSocket preview server and the MCP
|
|
|
38
38
|
npm install -g @filipc77/cowrite
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
This gives you the `cowrite` command globally.
|
|
41
|
+
This gives you the `cowrite` command globally (needed for `cowrite open`). Optional if you only use `npx`.
|
|
42
42
|
|
|
43
43
|
### 2. Add Cowrite as an MCP server in Claude Code
|
|
44
44
|
|
|
45
|
+
**For this project only** (recommended):
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
claude mcp add cowrite -- npx -y @filipc77/cowrite@latest serve
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
**For all projects** (user-level):
|
|
52
|
+
|
|
45
53
|
```bash
|
|
46
54
|
claude mcp add -s user cowrite -- npx -y @filipc77/cowrite@latest serve
|
|
47
55
|
```
|