@vibeframe/mcp-server 0.106.5 → 0.106.7

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 (3) hide show
  1. package/README.md +10 -2
  2. package/dist/index.js +370 -327
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -49,13 +49,21 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
49
49
  {
50
50
  "mcpServers": {
51
51
  "vibeframe": {
52
- "command": "npx",
53
- "args": ["-y", "@vibeframe/mcp-server"]
52
+ "command": "bash",
53
+ "args": [
54
+ "-lc",
55
+ "cd '/absolute/path/to/your/vibeframe-workspace' && exec npx -y @vibeframe/mcp-server"
56
+ ]
54
57
  }
55
58
  }
56
59
  }
57
60
  ```
58
61
 
62
+ The shell wrapper is important for Claude Desktop because it is a global app
63
+ config and may not preserve a raw `cwd` field. It anchors relative project paths
64
+ so prompts like "create a project named launch" create `launch/` under your
65
+ workspace instead of a temporary directory.
66
+
59
67
  ### Cursor
60
68
 
61
69
  Add to `.cursor/mcp.json`: