@vibeframe/mcp-server 0.79.3 → 0.80.0

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 +6 -5
  2. package/dist/index.js +479 -367
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -170,6 +170,7 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
170
170
 
171
171
  | Tool | Description |
172
172
  |------|-------------|
173
+ | `timeline_create` / `timeline_info` | Create or inspect low-level timeline JSON state |
173
174
  | `timeline_add_source` | Import media (video/audio/image) |
174
175
  | `timeline_add_clip` / `_split_clip` / `_trim_clip` | Build & shape clips |
175
176
  | `timeline_move_clip` / `_duplicate_clip` / `_delete_clip` | Arrange clips |
@@ -177,12 +178,12 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
177
178
  | `timeline_add_effect` | Apply effect (fade, blur, …) |
178
179
  | `timeline_list` | List all project contents |
179
180
 
180
- ### Project & Export (3)
181
+ ### Compatibility & Export
181
182
 
182
183
  | Tool | Description |
183
184
  |------|-------------|
184
- | `project_create` / `project_info` | `.vibe.json` lifecycle |
185
- | `export_video` | Export project to MP4/WebM/MOV via FFmpeg |
185
+ | `project_create` / `project_info` | Deprecated compatibility aliases for timeline JSON state |
186
+ | `export_video` | Export timeline JSON to MP4/WebM/MOV via FFmpeg |
186
187
 
187
188
  ### Remix & pipelines (4)
188
189
 
@@ -199,7 +200,7 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
199
200
  |------|-------------|
200
201
  | `walkthrough` | Cross-host guides for scene and pipeline workflows |
201
202
 
202
- > **CLI ↔ MCP sync**: `packages/mcp-server/src/tools/cli-sync.test.ts` is a vitest hook that fails CI when a CLI subcommand is added/removed/renamed without the matching MCP change. Open the test file to see the live mapping table — `null` rows mark CLI-only commands (e.g. `vibe audio list-voices`, `vibe project set`) that are intentionally not exposed via MCP.
203
+ > **CLI ↔ MCP sync**: `packages/mcp-server/src/tools/cli-sync.test.ts` is a vitest hook that fails CI when a CLI subcommand is added/removed/renamed without the matching MCP change. Open the test file to see the live mapping table — `null` rows mark CLI-only commands (e.g. `vibe audio list-voices`, `vibe timeline set`) that are intentionally not exposed via MCP.
203
204
 
204
205
  ## Resources
205
206
 
@@ -237,7 +238,7 @@ API keys are read from the host's environment (`~/.zshrc`, MCP config `env` bloc
237
238
  | `FAL_KEY` | Seedance image-to-video |
238
239
  | `RUNWAY_API_SECRET` | Runway video |
239
240
  | `KLING_API_KEY` | Kling video |
240
- | `VIBE_PROJECT_PATH` | Default `.vibe.json` path for resources |
241
+ | `VIBE_PROJECT_PATH` | Default timeline JSON path for resources |
241
242
 
242
243
  ## Requirements
243
244