@vibeframe/mcp-server 0.74.0 → 0.76.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 +24 -19
  2. package/dist/index.js +942 -1379
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -8,7 +8,7 @@ Confirmed MCP hosts today: **Claude Desktop**, **Cursor**, **OpenCode**, and **C
8
8
 
9
9
  | Surface | Package | How you call it |
10
10
  |---------|---------|-----------------|
11
- | MCP host (Claude Desktop / Cursor / OpenCode / Claude Code) | `@vibeframe/mcp-server` *(this)* | host calls tool by name, for example `mcp__vibeframe__scene_build({...})` |
11
+ | MCP host (Claude Desktop / Cursor / OpenCode / Claude Code) | `@vibeframe/mcp-server` *(this)* | host calls tool by name, for example `mcp__vibeframe__build({...})` |
12
12
  | Shell / scripts (any agent host: Codex / Aider / Gemini CLI / etc.) | `@vibeframe/cli` | `vibe init my-video && vibe build my-video && vibe render my-video` |
13
13
  | Standalone agent REPL | `@vibeframe/cli` (`vibe agent`) | natural language -> CLI calls |
14
14
 
@@ -74,7 +74,7 @@ claude mcp add vibeframe -- npx -y @vibeframe/mcp-server
74
74
  Once connected, your MCP host can resolve prompts like these into typed tool calls:
75
75
 
76
76
  > "Scaffold a 12-second Swiss-Pulse promo project, three beats, and render it"
77
- > *→ `scene_init` + 3× `scene_add` + `scene_render`*
77
+ > *→ `init` + 3× `scene_add` + `render`*
78
78
 
79
79
  > "Generate a cinematic backdrop image, animate it for 5 seconds, add narration"
80
80
  > *→ `generate_image` + `generate_motion` + `generate_speech`*
@@ -84,20 +84,25 @@ Once connected, your MCP host can resolve prompts like these into typed tool cal
84
84
 
85
85
  ## Available Tools
86
86
 
87
- Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows them as `mcp__vibeframe__scene_init`). Each one wraps the same engine call as the matching `vibe` CLI subcommand.
87
+ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows them as `mcp__vibeframe__init`). Each one wraps the same engine call as the matching `vibe` CLI subcommand.
88
88
 
89
- ### Scene authoring
89
+ ### Project flow (top-level)
90
+
91
+ | Tool | Description |
92
+ |------|-------------|
93
+ | `init` | Scaffold a video project with `STORYBOARD.md` + `DESIGN.md` |
94
+ | `build` | Build a storyboard project: narration TTS, image assets, scene HTML composition |
95
+ | `render` | Deterministic Hyperframes render → MP4/WebM/MOV |
96
+
97
+ ### Scene authoring (lower-level)
90
98
 
91
99
  | Tool | Description |
92
100
  |------|-------------|
93
- | `scene_init` | Low-level scene project scaffold with `STORYBOARD.md` + `DESIGN.md` |
94
101
  | `scene_styles` | List the 8 vendored visual identities (Swiss Pulse, Data Drift, …) or fetch one |
95
102
  | `scene_add` | Append a beat (narration + backdrop + composed HTML) |
96
103
  | `scene_install_skill` | Install the Hyperframes skill bundle into a scene project |
97
104
  | `scene_lint` | Validate composition HTML against the visual identity |
98
- | `scene_render` | Deterministic Hyperframes render → MP4 |
99
105
  | `scene_compose_prompts` | Emit the per-beat compose plan without making an LLM call |
100
- | `scene_build` | Build a storyboard project from `STORYBOARD.md` cues with narration, image assets, composition, and render steps |
101
106
 
102
107
  ### Generation (13)
103
108
 
@@ -139,7 +144,7 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
139
144
  | Tool | Description |
140
145
  |------|-------------|
141
146
  | `audio_dub` | AI voice dubbing (ElevenLabs) |
142
- | `audio_voice_clone` | Voice clone from sample |
147
+ | `audio_clone_voice` | Voice clone from sample |
143
148
  | `audio_isolate` | Vocal / background isolation |
144
149
  | `audio_duck` | Auto-duck BGM under speech |
145
150
  | `audio_transcribe` | Transcript with word-level timing (Whisper) |
@@ -152,14 +157,14 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
152
157
  | `detect_scenes` | Find shot boundaries |
153
158
  | `detect_beats` | Find music beats |
154
159
 
155
- ### Analysis (4)
160
+ ### Inspection (4)
156
161
 
157
162
  | Tool | Description |
158
163
  |------|-------------|
159
- | `analyze_media` | Unified image / video / YouTube analysis (Gemini) |
160
- | `analyze_video` | Temporal video understanding (Gemini) |
161
- | `analyze_review` | AI video review + auto-fix suggestions |
162
- | `analyze_suggest` | Natural-language project edit suggestions (Gemini); optional auto-apply |
164
+ | `inspect_media` | Unified image / video / YouTube analysis (Gemini) |
165
+ | `inspect_video` | Temporal video understanding (Gemini) |
166
+ | `inspect_review` | AI video review + auto-fix suggestions |
167
+ | `inspect_suggest` | Natural-language project edit suggestions (Gemini); optional auto-apply |
163
168
 
164
169
  ### Timeline (10)
165
170
 
@@ -179,14 +184,14 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
179
184
  | `project_create` / `project_info` | `.vibe.json` lifecycle |
180
185
  | `export_video` | Export project to MP4/WebM/MOV via FFmpeg |
181
186
 
182
- ### Pipelines (4)
187
+ ### Remix & pipelines (4)
183
188
 
184
189
  | Tool | Description |
185
190
  |------|-------------|
186
- | `pipeline_run` | Execute a multi-stage YAML pipeline |
187
- | `pipeline_highlights` | Long-form → highlight clips |
188
- | `pipeline_auto_shorts` | Long-form → vertical shorts |
189
- | `pipeline_regenerate_scene` | Re-render a single scene against an existing storyboard.{yaml,json} |
191
+ | `run` | Execute a multi-stage YAML pipeline (`vibe run pipeline.yaml`) |
192
+ | `remix_highlights` | Long-form → highlight clips |
193
+ | `remix_auto_shorts` | Long-form → vertical shorts |
194
+ | `remix_regenerate_scene` | Re-render a single scene against an existing storyboard.{yaml,json} |
190
195
 
191
196
  ### Walkthrough (1)
192
197
 
@@ -225,7 +230,7 @@ API keys are read from the host's environment (`~/.zshrc`, MCP config `env` bloc
225
230
  | Variable | Used by |
226
231
  |----------|---------|
227
232
  | `OPENAI_API_KEY` | gpt-image-2, Whisper, GPT |
228
- | `ANTHROPIC_API_KEY` | Claude (translate-srt, highlights, scene_build compose pipeline) |
233
+ | `ANTHROPIC_API_KEY` | Claude (translate-srt, highlights, build compose pipeline) |
229
234
  | `GOOGLE_API_KEY` | Gemini (analyze, review, silence-cut, narrate) |
230
235
  | `ELEVENLABS_API_KEY` | TTS, voice-clone, dubbing, SFX |
231
236
  | `XAI_API_KEY` | Grok |