@vibeframe/mcp-server 0.13.5
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 +90 -0
- package/dist/index.js +1313 -0
- package/package.json +55 -0
package/README.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# @vibeframe/mcp-server
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) server for [VibeFrame](https://github.com/vericontext/vibeframe) - AI-native video editing.
|
|
4
|
+
|
|
5
|
+
Edit video timelines with natural language through Claude Desktop, Cursor, or any MCP client.
|
|
6
|
+
|
|
7
|
+
## Quick Setup
|
|
8
|
+
|
|
9
|
+
### Claude Desktop
|
|
10
|
+
|
|
11
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
12
|
+
|
|
13
|
+
```json
|
|
14
|
+
{
|
|
15
|
+
"mcpServers": {
|
|
16
|
+
"vibeframe": {
|
|
17
|
+
"command": "npx",
|
|
18
|
+
"args": ["-y", "@vibeframe/mcp-server"]
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Cursor
|
|
25
|
+
|
|
26
|
+
Add to `.cursor/mcp.json`:
|
|
27
|
+
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"mcpServers": {
|
|
31
|
+
"vibeframe": {
|
|
32
|
+
"command": "npx",
|
|
33
|
+
"args": ["-y", "@vibeframe/mcp-server"]
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## What You Can Do
|
|
40
|
+
|
|
41
|
+
Once connected, ask your AI assistant:
|
|
42
|
+
|
|
43
|
+
> "Create a new video project called Demo"
|
|
44
|
+
|
|
45
|
+
> "Add intro.mp4 to the project"
|
|
46
|
+
|
|
47
|
+
> "Trim the clip to 5 seconds and add a fade in"
|
|
48
|
+
|
|
49
|
+
> "Split the clip at 3 seconds"
|
|
50
|
+
|
|
51
|
+
## Available Tools (13)
|
|
52
|
+
|
|
53
|
+
| Tool | Description |
|
|
54
|
+
|------|-------------|
|
|
55
|
+
| `project_create` | Create a new `.vibe.json` project |
|
|
56
|
+
| `project_info` | Get project metadata |
|
|
57
|
+
| `timeline_add_source` | Import media (video/audio/image) |
|
|
58
|
+
| `timeline_add_clip` | Add clip to timeline |
|
|
59
|
+
| `timeline_split_clip` | Split clip at time |
|
|
60
|
+
| `timeline_trim_clip` | Trim clip start/end |
|
|
61
|
+
| `timeline_move_clip` | Move clip to new position |
|
|
62
|
+
| `timeline_delete_clip` | Remove clip |
|
|
63
|
+
| `timeline_duplicate_clip` | Duplicate clip |
|
|
64
|
+
| `timeline_add_effect` | Apply effect (fade, blur, etc.) |
|
|
65
|
+
| `timeline_add_track` | Add video/audio track |
|
|
66
|
+
| `timeline_list` | List all project contents |
|
|
67
|
+
|
|
68
|
+
## Resources
|
|
69
|
+
|
|
70
|
+
| URI | Description |
|
|
71
|
+
|-----|-------------|
|
|
72
|
+
| `vibe://project/current` | Full project state |
|
|
73
|
+
| `vibe://project/clips` | All clips |
|
|
74
|
+
| `vibe://project/sources` | Media sources |
|
|
75
|
+
| `vibe://project/tracks` | Track list |
|
|
76
|
+
| `vibe://project/settings` | Project settings |
|
|
77
|
+
|
|
78
|
+
## Environment Variables
|
|
79
|
+
|
|
80
|
+
| Variable | Description |
|
|
81
|
+
|----------|-------------|
|
|
82
|
+
| `VIBE_PROJECT_PATH` | Default project file path for resource access |
|
|
83
|
+
|
|
84
|
+
## Requirements
|
|
85
|
+
|
|
86
|
+
- Node.js 18+
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
MIT
|