@vibeframe/mcp-server 0.19.2 → 0.20.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 +73 -7
- package/dist/index.js +11008 -365
- package/package.json +21 -1
package/README.md
CHANGED
|
@@ -42,18 +42,29 @@ Once connected, ask your AI assistant:
|
|
|
42
42
|
|
|
43
43
|
> "Create a new video project called Demo"
|
|
44
44
|
|
|
45
|
-
> "Add intro.mp4 to the project"
|
|
45
|
+
> "Add intro.mp4 to the project and export it as output.mp4"
|
|
46
46
|
|
|
47
|
-
> "
|
|
47
|
+
> "Remove silent segments from my video"
|
|
48
48
|
|
|
49
|
-
> "
|
|
49
|
+
> "Add captions to my video with bold style"
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
> "Generate a video from this script: A sunrise over the ocean..."
|
|
52
|
+
|
|
53
|
+
> "Extract 3 highlight clips from my interview recording"
|
|
54
|
+
|
|
55
|
+
## Available Tools (28)
|
|
56
|
+
|
|
57
|
+
### Project Management (2)
|
|
52
58
|
|
|
53
59
|
| Tool | Description |
|
|
54
60
|
|------|-------------|
|
|
55
61
|
| `project_create` | Create a new `.vibe.json` project |
|
|
56
62
|
| `project_info` | Get project metadata |
|
|
63
|
+
|
|
64
|
+
### Timeline Operations (10)
|
|
65
|
+
|
|
66
|
+
| Tool | Description |
|
|
67
|
+
|------|-------------|
|
|
57
68
|
| `timeline_add_source` | Import media (video/audio/image) |
|
|
58
69
|
| `timeline_add_clip` | Add clip to timeline |
|
|
59
70
|
| `timeline_split_clip` | Split clip at time |
|
|
@@ -65,6 +76,42 @@ Once connected, ask your AI assistant:
|
|
|
65
76
|
| `timeline_add_track` | Add video/audio track |
|
|
66
77
|
| `timeline_list` | List all project contents |
|
|
67
78
|
|
|
79
|
+
### Export (1)
|
|
80
|
+
|
|
81
|
+
| Tool | Description |
|
|
82
|
+
|------|-------------|
|
|
83
|
+
| `export_video` | Export project to MP4/WebM/MOV via FFmpeg |
|
|
84
|
+
|
|
85
|
+
### AI Editing (7)
|
|
86
|
+
|
|
87
|
+
| Tool | Description | API Key |
|
|
88
|
+
|------|-------------|---------|
|
|
89
|
+
| `edit_silence_cut` | Remove silent segments | None (FFmpeg) or GOOGLE (Gemini) |
|
|
90
|
+
| `edit_caption` | Transcribe + burn styled captions | OPENAI (Whisper) |
|
|
91
|
+
| `edit_fade` | Fade in/out effects | None (FFmpeg) |
|
|
92
|
+
| `edit_noise_reduce` | Audio/video noise removal | None (FFmpeg) |
|
|
93
|
+
| `edit_jump_cut` | Remove filler words | OPENAI (Whisper) |
|
|
94
|
+
| `edit_text_overlay` | Apply text overlays | None (FFmpeg) |
|
|
95
|
+
| `edit_translate_srt` | Translate SRT subtitles | ANTHROPIC or OPENAI |
|
|
96
|
+
|
|
97
|
+
### AI Analysis (4)
|
|
98
|
+
|
|
99
|
+
| Tool | Description | API Key |
|
|
100
|
+
|------|-------------|---------|
|
|
101
|
+
| `ai_analyze` | Unified media analysis (image/video/YouTube) | GOOGLE |
|
|
102
|
+
| `ai_gemini_video` | Video analysis with temporal understanding | GOOGLE |
|
|
103
|
+
| `ai_review` | AI video review + auto-fix | GOOGLE |
|
|
104
|
+
| `ai_thumbnail` | Extract best thumbnail frame | GOOGLE |
|
|
105
|
+
|
|
106
|
+
### AI Pipelines (4)
|
|
107
|
+
|
|
108
|
+
| Tool | Description | API Key |
|
|
109
|
+
|------|-------------|---------|
|
|
110
|
+
| `ai_script_to_video` | Full script-to-video pipeline | Multiple (varies by provider) |
|
|
111
|
+
| `ai_highlights` | Extract highlight clips | OPENAI+ANTHROPIC or GOOGLE |
|
|
112
|
+
| `ai_auto_shorts` | Generate short-form content | OPENAI+ANTHROPIC or GOOGLE |
|
|
113
|
+
| `ai_narrate` | Auto-generate narration | GOOGLE + ELEVENLABS |
|
|
114
|
+
|
|
68
115
|
## Resources
|
|
69
116
|
|
|
70
117
|
| URI | Description |
|
|
@@ -75,15 +122,34 @@ Once connected, ask your AI assistant:
|
|
|
75
122
|
| `vibe://project/tracks` | Track list |
|
|
76
123
|
| `vibe://project/settings` | Project settings |
|
|
77
124
|
|
|
125
|
+
## Prompts
|
|
126
|
+
|
|
127
|
+
| Prompt | Description |
|
|
128
|
+
|--------|-------------|
|
|
129
|
+
| `edit_video` | Get guidance on editing a video with natural language instructions |
|
|
130
|
+
| `create_montage` | Create a montage from multiple clips with automatic pacing |
|
|
131
|
+
| `add_transitions` | Add transitions between clips in the timeline |
|
|
132
|
+
| `color_grade` | Apply color grading to clips |
|
|
133
|
+
| `generate_subtitles` | Generate subtitles from audio using AI transcription |
|
|
134
|
+
| `create_shorts` | Create short-form content from a longer video |
|
|
135
|
+
| `sync_to_music` | Sync video cuts to music beats |
|
|
136
|
+
|
|
78
137
|
## Environment Variables
|
|
79
138
|
|
|
80
|
-
| Variable | Description |
|
|
81
|
-
|
|
82
|
-
| `VIBE_PROJECT_PATH` | Default project file path
|
|
139
|
+
| Variable | Used By | Description |
|
|
140
|
+
|----------|---------|-------------|
|
|
141
|
+
| `VIBE_PROJECT_PATH` | Resources | Default project file path |
|
|
142
|
+
| `OPENAI_API_KEY` | caption, jump-cut, translate-srt, highlights | Whisper + GPT |
|
|
143
|
+
| `ANTHROPIC_API_KEY` | translate-srt, highlights, script-to-video | Claude |
|
|
144
|
+
| `GOOGLE_API_KEY` | analyze, gemini-video, review, thumbnail, narrate | Gemini |
|
|
145
|
+
| `ELEVENLABS_API_KEY` | narrate, script-to-video | TTS |
|
|
146
|
+
| `RUNWAY_API_SECRET` | script-to-video | Video generation |
|
|
147
|
+
| `KLING_API_KEY` | script-to-video | Video generation |
|
|
83
148
|
|
|
84
149
|
## Requirements
|
|
85
150
|
|
|
86
151
|
- Node.js 18+
|
|
152
|
+
- FFmpeg (for export, editing, and pipeline tools)
|
|
87
153
|
|
|
88
154
|
## License
|
|
89
155
|
|