@vibeframe/mcp-server 0.72.0 → 0.73.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 +10 -10
  2. package/dist/index.js +773 -481
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -8,9 +8,9 @@ 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 `mcp__vibeframe__scene_init({...})` |
12
- | Shell / scripts (any agent host: Codex / Aider / Gemini CLI / etc.) | `@vibeframe/cli` | `vibe scene init my-promo` |
13
- | Standalone agent REPL | `@vibeframe/cli` (`vibe agent`) | natural language CLI calls |
11
+ | MCP host (Claude Desktop / Cursor / OpenCode / Claude Code) | `@vibeframe/mcp-server` *(this)* | host calls tool by name, for example `mcp__vibeframe__scene_build({...})` |
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
+ | Standalone agent REPL | `@vibeframe/cli` (`vibe agent`) | natural language -> CLI calls |
14
14
 
15
15
  The tool list below is what the MCP host sees. The same operations exist as `vibe <verb> <noun>` subcommands in the CLI — see `vibe --help`.
16
16
 
@@ -82,22 +82,22 @@ Once connected, your MCP host can resolve prompts like these into typed tool cal
82
82
  > "Remove silent segments and add captions to my interview"
83
83
  > *→ `edit_silence_cut` + `edit_caption`*
84
84
 
85
- ## Available Tools (66)
85
+ ## Available Tools
86
86
 
87
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.
88
88
 
89
- ### Scene authoring (8) — v0.58–v0.70
89
+ ### Scene authoring
90
90
 
91
91
  | Tool | Description |
92
92
  |------|-------------|
93
- | `scene_init` | Scaffold a scene project with `STORYBOARD.md` + `DESIGN.md` (auto-installs Hyperframes skill) |
93
+ | `scene_init` | Low-level scene project scaffold with `STORYBOARD.md` + `DESIGN.md` |
94
94
  | `scene_styles` | List the 8 vendored visual identities (Swiss Pulse, Data Drift, …) or fetch one |
95
95
  | `scene_add` | Append a beat (narration + backdrop + composed HTML) |
96
- | `scene_install_skill` | Retroactive install of the Hyperframes skill bundle into a scene project (Plan H — Phase 1) |
96
+ | `scene_install_skill` | Install the Hyperframes skill bundle into a scene project |
97
97
  | `scene_lint` | Validate composition HTML against the visual identity |
98
98
  | `scene_render` | Deterministic Hyperframes render → MP4 |
99
- | `scene_compose_prompts` | Emit the per-beat compose plan (no LLM call) — host agent authors HTML itself (Plan H — Phase 2) |
100
- | `scene_build` | **v0.60 one-shot**: STORYBOARD.md cues TTS + image + compose + render MP4 (cached, idempotent). `--mode <agent\|batch\|auto>` dispatch added in Plan H Phase 3. |
99
+ | `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
101
 
102
102
  ### Generation (13)
103
103
 
@@ -192,7 +192,7 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
192
192
 
193
193
  | Tool | Description |
194
194
  |------|-------------|
195
- | `walkthrough` | Cross-host equivalent of Claude Code's `/vibe-*` slash commands — interactive guides for `scene` and `pipeline` flows (v0.71) |
195
+ | `walkthrough` | Cross-host guides for scene and pipeline workflows |
196
196
 
197
197
  > **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 voices`, `vibe project set`) that are intentionally not exposed via MCP.
198
198