@vibeframe/mcp-server 0.71.0 → 0.72.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.
- package/README.md +37 -9
- package/dist/index.js +818 -509
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# @vibeframe/mcp-server
|
|
2
2
|
|
|
3
|
-
The MCP (Model Context Protocol) **server** for [VibeFrame](https://github.com/vericontext/vibeframe). This package is *only* the MCP adapter — it exposes VibeFrame's operations as typed MCP tools so
|
|
3
|
+
The MCP (Model Context Protocol) **server** for [VibeFrame](https://github.com/vericontext/vibeframe). This package is *only* the MCP adapter — it exposes VibeFrame's operations as typed MCP tools so an MCP-capable host can call them by natural language.
|
|
4
|
+
|
|
5
|
+
Confirmed MCP hosts today: **Claude Desktop**, **Cursor**, **OpenCode**, and **Claude Code** (Claude Code can drive `vibe` natively via shell + `AGENTS.md`; the `claude mcp add` route below adds the typed-tool option for users who prefer it). For non-MCP hosts (Codex, Aider, Gemini CLI, anything else that shells out to bash), use [`@vibeframe/cli`](https://www.npmjs.com/package/@vibeframe/cli) directly — same operations.
|
|
4
6
|
|
|
5
7
|
> **Just want a CLI?** Use [`@vibeframe/cli`](https://www.npmjs.com/package/@vibeframe/cli) instead — same operations, invoked directly in your shell as `vibe <command>`. This package and the CLI wrap the same underlying engine; pick whichever fits your workflow. Many users install both.
|
|
6
8
|
|
|
7
9
|
| Surface | Package | How you call it |
|
|
8
10
|
|---------|---------|-----------------|
|
|
9
|
-
| MCP host (Claude Desktop / Cursor / Claude Code) | `@vibeframe/mcp-server` *(this)* | host calls tool by name → `mcp__vibeframe__scene_init({...})` |
|
|
10
|
-
| Shell / scripts | `@vibeframe/cli` | `vibe scene init my-promo` |
|
|
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` |
|
|
11
13
|
| Standalone agent REPL | `@vibeframe/cli` (`vibe agent`) | natural language → CLI calls |
|
|
12
14
|
|
|
13
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`.
|
|
@@ -44,8 +46,25 @@ Add to `.cursor/mcp.json`:
|
|
|
44
46
|
}
|
|
45
47
|
```
|
|
46
48
|
|
|
49
|
+
### OpenCode
|
|
50
|
+
|
|
51
|
+
Add to `.opencode/mcp.json` (or your global config per [opencode.ai/docs/config](https://opencode.ai/docs/config/)):
|
|
52
|
+
|
|
53
|
+
```json
|
|
54
|
+
{
|
|
55
|
+
"mcpServers": {
|
|
56
|
+
"vibeframe": {
|
|
57
|
+
"command": "npx",
|
|
58
|
+
"args": ["-y", "@vibeframe/mcp-server"]
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
```
|
|
63
|
+
|
|
47
64
|
### Claude Code
|
|
48
65
|
|
|
66
|
+
Claude Code drives `vibe` natively via shell + the scaffolded `AGENTS.md` / `CLAUDE.md` — MCP isn't required. If you'd like the typed-tool surface anyway:
|
|
67
|
+
|
|
49
68
|
```bash
|
|
50
69
|
claude mcp add vibeframe -- npx -y @vibeframe/mcp-server
|
|
51
70
|
```
|
|
@@ -63,20 +82,22 @@ Once connected, your MCP host can resolve prompts like these into typed tool cal
|
|
|
63
82
|
> "Remove silent segments and add captions to my interview"
|
|
64
83
|
> *→ `edit_silence_cut` + `edit_caption`*
|
|
65
84
|
|
|
66
|
-
## Available Tools (
|
|
85
|
+
## Available Tools (66)
|
|
67
86
|
|
|
68
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.
|
|
69
88
|
|
|
70
|
-
### Scene authoring (
|
|
89
|
+
### Scene authoring (8) — v0.58–v0.70
|
|
71
90
|
|
|
72
91
|
| Tool | Description |
|
|
73
92
|
|------|-------------|
|
|
74
|
-
| `scene_init` | Scaffold a scene project with `STORYBOARD.md` + `DESIGN.md` |
|
|
93
|
+
| `scene_init` | Scaffold a scene project with `STORYBOARD.md` + `DESIGN.md` (auto-installs Hyperframes skill) |
|
|
75
94
|
| `scene_styles` | List the 8 vendored visual identities (Swiss Pulse, Data Drift, …) or fetch one |
|
|
76
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) |
|
|
77
97
|
| `scene_lint` | Validate composition HTML against the visual identity |
|
|
78
98
|
| `scene_render` | Deterministic Hyperframes render → MP4 |
|
|
79
|
-
| `
|
|
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. |
|
|
80
101
|
|
|
81
102
|
### Generation (13)
|
|
82
103
|
|
|
@@ -94,7 +115,7 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
|
|
|
94
115
|
| `generate_thumbnail` | AI thumbnail composition | OpenAI, Google |
|
|
95
116
|
| `generate_storyboard` | Multi-beat storyboard frames | OpenAI, Google |
|
|
96
117
|
|
|
97
|
-
### Editing (
|
|
118
|
+
### Editing (15)
|
|
98
119
|
|
|
99
120
|
| Tool | Description |
|
|
100
121
|
|------|-------------|
|
|
@@ -111,6 +132,7 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
|
|
|
111
132
|
| `edit_image` | Image editing (gpt-image-2, Gemini) |
|
|
112
133
|
| `edit_noise_reduce` | Audio/video denoise |
|
|
113
134
|
| `edit_translate_srt` | Translate SRT subtitles |
|
|
135
|
+
| `edit_fill_gaps` | Detect & fill missing video segments via TTS narration timing (Plan G — Phase 4) |
|
|
114
136
|
|
|
115
137
|
### Audio (5)
|
|
116
138
|
|
|
@@ -166,7 +188,13 @@ Tool names are MCP-side. Your host typically prefixes them (e.g. Claude shows th
|
|
|
166
188
|
| `pipeline_auto_shorts` | Long-form → vertical shorts |
|
|
167
189
|
| `pipeline_regenerate_scene` | Re-render a single scene against an existing storyboard.{yaml,json} |
|
|
168
190
|
|
|
169
|
-
|
|
191
|
+
### Walkthrough (1)
|
|
192
|
+
|
|
193
|
+
| Tool | Description |
|
|
194
|
+
|------|-------------|
|
|
195
|
+
| `walkthrough` | Cross-host equivalent of Claude Code's `/vibe-*` slash commands — interactive guides for `scene` and `pipeline` flows (v0.71) |
|
|
196
|
+
|
|
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.
|
|
170
198
|
|
|
171
199
|
## Resources
|
|
172
200
|
|