@vibeframe/mcp-server 0.106.6 → 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 (2) hide show
  1. package/README.md +9 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -49,17 +49,20 @@ 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"],
54
- "cwd": "/absolute/path/to/your/vibeframe-workspace"
52
+ "command": "bash",
53
+ "args": [
54
+ "-lc",
55
+ "cd '/absolute/path/to/your/vibeframe-workspace' && exec npx -y @vibeframe/mcp-server"
56
+ ]
55
57
  }
56
58
  }
57
59
  }
58
60
  ```
59
61
 
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.
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.
63
66
 
64
67
  ### Cursor
65
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeframe/mcp-server",
3
- "version": "0.106.6",
3
+ "version": "0.106.7",
4
4
  "description": "VibeFrame MCP Server - AI-native video editing via Model Context Protocol",
5
5
  "type": "module",
6
6
  "bin": {
@@ -57,8 +57,8 @@
57
57
  "tsx": "^4.21.0",
58
58
  "typescript": "^5.3.3",
59
59
  "vitest": "^1.2.2",
60
- "@vibeframe/core": "0.106.6",
61
- "@vibeframe/cli": "0.106.6"
60
+ "@vibeframe/core": "0.106.7",
61
+ "@vibeframe/cli": "0.106.7"
62
62
  },
63
63
  "engines": {
64
64
  "node": ">=20"