@vibeframe/mcp-server 0.106.5 → 0.106.6
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 +6 -1
- package/dist/index.js +370 -327
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -50,12 +50,17 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
|
50
50
|
"mcpServers": {
|
|
51
51
|
"vibeframe": {
|
|
52
52
|
"command": "npx",
|
|
53
|
-
"args": ["-y", "@vibeframe/mcp-server"]
|
|
53
|
+
"args": ["-y", "@vibeframe/mcp-server"],
|
|
54
|
+
"cwd": "/absolute/path/to/your/vibeframe-workspace"
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
}
|
|
57
58
|
```
|
|
58
59
|
|
|
60
|
+
`cwd` is important for Claude Desktop because it is a global app config. It
|
|
61
|
+
anchors relative project paths so prompts like "create a project named launch"
|
|
62
|
+
create `launch/` under your workspace instead of a temporary directory.
|
|
63
|
+
|
|
59
64
|
### Cursor
|
|
60
65
|
|
|
61
66
|
Add to `.cursor/mcp.json`:
|