@hybridlabor-api/bdb-antigravity-skills 1.2.1 → 1.2.2
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/Project-overview.html +5 -4
- package/installer.js +1 -0
- package/mcp_config.json +4 -0
- package/mcps/davinci-resolve-mcp-free/LICENSE +21 -0
- package/mcps/davinci-resolve-mcp-free/README.md +220 -0
- package/mcps/davinci-resolve-mcp-free/examples/mcp.json +8 -0
- package/mcps/davinci-resolve-mcp-free/requirements.txt +5 -0
- package/mcps/davinci-resolve-mcp-free/src/CursorBridge.py +2910 -0
- package/mcps/davinci-resolve-mcp-free/src/resolve_mcp_bridge.py +2529 -0
- package/package.json +1 -1
- package/skills/global_config/bdb-adobe-suite-mcp.md +106 -0
- package/skills/global_config/bdb-after-effects-mcp.md +117 -0
- package/skills/global_config/bdb-blender-mcp.md +130 -0
- package/skills/global_config/bdb-computer-use-mcp.md +119 -0
- package/skills/global_config/bdb-davinci-mcp.md +139 -0
- package/skills/global_config/bdb-grandma3-mcp.md +109 -0
- package/skills/global_config/bdb-resolume-mcp.md +103 -0
- package/skills/global_config/bdb-rhino-mcp.md +153 -0
- package/skills/global_config/bdb-touchdesigner-mcp.md +116 -0
- package/skills/global_config/bdb-unreal-mcp.md +130 -0
- package/skills/global_config/bdb-vectorworks-mcp.md +110 -0
package/Project-overview.html
CHANGED
|
@@ -445,14 +445,14 @@
|
|
|
445
445
|
<div class="grid-overlay"></div>
|
|
446
446
|
|
|
447
447
|
<div class="container">
|
|
448
|
-
|
|
448
|
+
<header>
|
|
449
449
|
<div class="logo">
|
|
450
450
|
BDB<span class="gradient-text-brand">OS</span>
|
|
451
|
-
<div class="version-badge">v1.2.
|
|
451
|
+
<div class="version-badge">v1.2.2</div>
|
|
452
452
|
</div>
|
|
453
453
|
<div style="display: flex; gap: 24px; font-size: 0.9rem; color: var(--text-medium);">
|
|
454
454
|
<div><strong>142</strong> Skills</div>
|
|
455
|
-
<div><strong>
|
|
455
|
+
<div><strong>20</strong> MCP Servers</div>
|
|
456
456
|
<div><strong>Universal</strong> Agent Support</div>
|
|
457
457
|
</div>
|
|
458
458
|
</header>
|
|
@@ -668,7 +668,8 @@
|
|
|
668
668
|
{ name: "bdb_unreal_mcp", desc: "Unreal Engine 5 MCP - Spawns actors, edits materials, and automates level/sequence manipulation in UE5.", cat: "mcp", source: "Global Config" },
|
|
669
669
|
{ name: "bdb_rhino_mcp", desc: "Rhino 3D MCP - Official McNeel community server for reading/writing Rhino geometric layouts.", cat: "mcp", source: "Global Config" },
|
|
670
670
|
{ name: "bdb_rhino_mcp_fallback", desc: "Rhino 3D GOLEM MCP - Py-based fallback server with 105 tools to manipulate Rhino 8 assets.", cat: "mcp", source: "Global Config" },
|
|
671
|
-
{ name: "bdb_davinci_mcp", desc: "DaVinci Resolve MCP -
|
|
671
|
+
{ name: "bdb_davinci_mcp", desc: "DaVinci Resolve Free MCP - hiteshK03 bridge working on Resolve Free/Studio with 162 tools and CPU-based AI replacements.", cat: "mcp", source: "Global Config" },
|
|
672
|
+
{ name: "bdb_davinci_mcp_studio", desc: "DaVinci Resolve Studio MCP - samuelgursky official Node server for timeline, media pool, and render editing.", cat: "mcp", source: "Global Config" },
|
|
672
673
|
{ name: "bdb_davinci_mcp_fallback", desc: "DaVinci Resolve Pro MCP - hoyt-harness professional python fallback server for Studio edition.", cat: "mcp", source: "Global Config" },
|
|
673
674
|
{ name: "bdb_blender_mcp", desc: "Blender MCP - ahujasid BlenderMCP socket integration for object creation and scene layout.", cat: "mcp", source: "Global Config" },
|
|
674
675
|
{ name: "bdb_blender_mcp_fallback", desc: "Blender Server MCP - djeada python fallback server for managing Blender TCP connections.", cat: "mcp", source: "Global Config" },
|
package/installer.js
CHANGED
|
@@ -280,6 +280,7 @@ promptMode(({ mode, platform, customPaths }) => {
|
|
|
280
280
|
const pythonMcps = [
|
|
281
281
|
{ folder: 'golem-rhino-mcp', cmd: 'uv run -m mcp_server --help' },
|
|
282
282
|
{ folder: 'davinci-mcp-professional', cmd: 'uv run main.py --help' },
|
|
283
|
+
{ folder: 'davinci-resolve-mcp-free', cmd: 'uv run -r requirements.txt src/resolve_mcp_bridge.py --help' },
|
|
283
284
|
{ folder: 'blender-mcp', cmd: 'uv run -m blender_mcp.server --help' },
|
|
284
285
|
{ folder: 'blender-mcp-server', cmd: 'uv run -m blender_mcp_server --help' },
|
|
285
286
|
{ folder: 'vectorworks-mcp', cmd: 'uv run -r requirements.txt app/mcp_server.py --help' }
|
package/mcp_config.json
CHANGED
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
"args": ["--directory", "__MCPS_DIR__/golem-rhino-mcp", "run", "-m", "mcp_server"]
|
|
22
22
|
},
|
|
23
23
|
"bdb_davinci_mcp": {
|
|
24
|
+
"command": "uv",
|
|
25
|
+
"args": ["run", "-r", "__MCPS_DIR__/davinci-resolve-mcp-free/requirements.txt", "__MCPS_DIR__/davinci-resolve-mcp-free/src/resolve_mcp_bridge.py"]
|
|
26
|
+
},
|
|
27
|
+
"bdb_davinci_mcp_studio": {
|
|
24
28
|
"command": "node",
|
|
25
29
|
"args": ["__MCPS_DIR__/davinci-resolve-mcp/bin/davinci-resolve-mcp.mjs"]
|
|
26
30
|
},
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Hitesh Kandala
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
# 🎬 DaVinci Resolve MCP Bridge
|
|
2
|
+
|
|
3
|
+
### The only MCP server for DaVinci Resolve that works on the **Free version**.
|
|
4
|
+
|
|
5
|
+
> "Add a marker at 5 seconds." "Transcribe my timeline." "Remove the background from clip 1." "Render to MP4."
|
|
6
|
+
>
|
|
7
|
+
> Just talk to your AI assistant. It controls Resolve for you.
|
|
8
|
+
|
|
9
|
+
[](https://www.blackmagicdesign.com/products/davinciresolve)
|
|
10
|
+
[](#-162-tools-across-every-feature-of-resolve)
|
|
11
|
+
[](#-built-in-ai-that-replaces-295-studio-features)
|
|
12
|
+
[](LICENSE)
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## 🤔 What Is This?
|
|
17
|
+
|
|
18
|
+
This project lets AI assistants like **Cursor**, **Claude**, or **Windsurf** control DaVinci Resolve through natural language. Instead of clicking through menus, you just *tell* the AI what to do — and it does it.
|
|
19
|
+
|
|
20
|
+
Think of it like giving your AI assistant a pair of hands inside DaVinci Resolve.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## ⚡ What Makes This Different?
|
|
25
|
+
|
|
26
|
+
Every other DaVinci Resolve MCP server requires the **$295 Studio version** because they use "external scripting" — a feature Blackmagic locks behind the paywall.
|
|
27
|
+
|
|
28
|
+
**This project works around that entirely.**
|
|
29
|
+
|
|
30
|
+
Instead of calling Resolve from the outside, a small bridge script runs *inside* Resolve (through the Scripts menu, which is available to everyone). That bridge opens a local connection, and the MCP server talks to it. Simple — and it works on the Free version.
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
Your AI Assistant (Cursor, Claude, etc.)
|
|
34
|
+
│
|
|
35
|
+
│ talks MCP
|
|
36
|
+
▼
|
|
37
|
+
resolve_mcp_bridge.py ← runs on your machine
|
|
38
|
+
│
|
|
39
|
+
│ talks HTTP (localhost)
|
|
40
|
+
▼
|
|
41
|
+
CursorBridge.py ← runs INSIDE Resolve (Workspace > Scripts)
|
|
42
|
+
│
|
|
43
|
+
▼
|
|
44
|
+
DaVinci Resolve API ← full read + write access
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**155 of 162 tools work on Free.** The 7 that don't are Studio's Neural Engine features — and for each one, this project includes a **free, local AI replacement** that runs on your CPU.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## 🧠 Built-In AI That Replaces $295 Studio Features
|
|
52
|
+
|
|
53
|
+
No API keys. No cloud. No subscriptions. These run locally on your machine using open-source models:
|
|
54
|
+
|
|
55
|
+
| You'd normally need Studio for... | This gives you instead | Powered by |
|
|
56
|
+
|---|---|---|
|
|
57
|
+
| 🎤 **Voice Isolation** | Separate vocals from music/noise | [Demucs v4](https://github.com/facebookresearch/demucs) by Meta |
|
|
58
|
+
| ✂️ **Background Removal** | Remove backgrounds from images & video | [rembg](https://github.com/danielgatis/rembg) + BiRefNet |
|
|
59
|
+
| 📝 **Auto Subtitles** | Transcribe audio with word-level timestamps | [faster-whisper](https://github.com/SYSTRAN/faster-whisper) (OpenAI Whisper) |
|
|
60
|
+
|
|
61
|
+
Models download automatically on first use. Everything runs on CPU — no GPU required.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## 🎛️ 162 Tools Across Every Feature of Resolve
|
|
66
|
+
|
|
67
|
+
This isn't a demo with 5 tools. It covers the **entire** DaVinci Resolve experience:
|
|
68
|
+
|
|
69
|
+
| Area | What you can do |
|
|
70
|
+
|------|----------------|
|
|
71
|
+
| **Timeline** | Create, rename, duplicate, switch timelines. Add/remove clips. Insert at specific frames. Delete with ripple. |
|
|
72
|
+
| **Clips** | Set color, opacity, zoom, pan, tilt, rotation, crop, flip, composite mode, scaling. Enable/disable. |
|
|
73
|
+
| **Markers & Flags** | Add/delete colored markers with notes on timelines and individual clips. Manage flags. |
|
|
74
|
+
| **Media Pool** | Import files, browse folders, move/delete/relink clips, auto-sync audio, export metadata. |
|
|
75
|
+
| **Color Grading** | Apply LUTs, set CDL values, copy grades between clips, manage color versions and groups, reset grades. |
|
|
76
|
+
| **Fusion** | List, add, import, export, delete, load, rename Fusion compositions on any clip. |
|
|
77
|
+
| **Rendering** | Configure settings, set format/codec, manage the render queue, start/stop rendering, quick export. |
|
|
78
|
+
| **Titles** | Insert Text+, generators, and Fusion compositions directly onto the timeline. |
|
|
79
|
+
| **Audio** | Apply Fairlight presets, insert audio at playhead, voice isolation (per-track and per-clip). |
|
|
80
|
+
| **Gallery** | Create albums, grab stills, export/import stills, set labels. |
|
|
81
|
+
| **Tracks** | Add, delete, rename, lock/unlock, enable/disable video/audio/subtitle tracks. |
|
|
82
|
+
| **Project Management** | List, create, load, delete, archive, export, import projects. Switch databases. |
|
|
83
|
+
| **AI Tools** | Transcribe audio, isolate vocals, remove backgrounds — all locally, no Studio required. |
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 🚀 Getting Started
|
|
88
|
+
|
|
89
|
+
### What You Need
|
|
90
|
+
|
|
91
|
+
- **DaVinci Resolve 18+** (Free or Studio — both work)
|
|
92
|
+
- **Python 3.9+** on the same machine as Resolve
|
|
93
|
+
- **Cursor**, Claude Desktop, or any MCP-compatible AI assistant
|
|
94
|
+
|
|
95
|
+
### Step 1 — Install the bridge script inside Resolve
|
|
96
|
+
|
|
97
|
+
Copy `src/CursorBridge.py` to your Resolve scripts folder:
|
|
98
|
+
|
|
99
|
+
| Platform | Path |
|
|
100
|
+
|----------|------|
|
|
101
|
+
| **Windows** | `%APPDATA%\Blackmagic Design\DaVinci Resolve\Support\Fusion\Scripts\Utility\` |
|
|
102
|
+
| **macOS** | `~/Library/Application Support/Blackmagic Design/DaVinci Resolve/Fusion/Scripts/Utility/` |
|
|
103
|
+
| **Linux** | `~/.local/share/DaVinciResolve/Fusion/Scripts/` |
|
|
104
|
+
|
|
105
|
+
### Step 2 — Set up the MCP server
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
git clone https://github.com/hiteshK03/davinci-resolve-mcp.git
|
|
109
|
+
cd davinci-resolve-mcp
|
|
110
|
+
python -m venv venv
|
|
111
|
+
source venv/bin/activate # Windows: venv\Scripts\activate
|
|
112
|
+
pip install -r requirements.txt
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### Step 3 — Tell your AI assistant about it
|
|
116
|
+
|
|
117
|
+
Add to your `.cursor/mcp.json` (or equivalent):
|
|
118
|
+
|
|
119
|
+
```json
|
|
120
|
+
{
|
|
121
|
+
"mcpServers": {
|
|
122
|
+
"davinci-resolve": {
|
|
123
|
+
"command": "python",
|
|
124
|
+
"args": ["path/to/davinci-resolve-mcp/src/resolve_mcp_bridge.py"]
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
<details>
|
|
131
|
+
<summary><strong>Windows + WSL setup</strong> (Cursor in WSL, Resolve on Windows)</summary>
|
|
132
|
+
|
|
133
|
+
```json
|
|
134
|
+
{
|
|
135
|
+
"mcpServers": {
|
|
136
|
+
"davinci-resolve": {
|
|
137
|
+
"command": "cmd.exe",
|
|
138
|
+
"args": ["/c", "C:\\path\\to\\venv\\Scripts\\python.exe", "C:\\path\\to\\src\\resolve_mcp_bridge.py"]
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
```
|
|
143
|
+
</details>
|
|
144
|
+
|
|
145
|
+
### Step 4 — Start using it
|
|
146
|
+
|
|
147
|
+
1. Open DaVinci Resolve
|
|
148
|
+
2. Go to **Workspace → Scripts → CursorBridge**
|
|
149
|
+
3. Console shows: `Bridge is running (read + write)`
|
|
150
|
+
4. Talk to your AI assistant — it now controls Resolve
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## 💬 Things You Can Say
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
"What's on my timeline right now?"
|
|
158
|
+
"Import these files into the media pool"
|
|
159
|
+
"Add a green marker at 5 seconds called 'intro ends'"
|
|
160
|
+
"Insert a Text+ title at the playhead"
|
|
161
|
+
"Set the first clip on track 2 to 70% opacity"
|
|
162
|
+
"Zoom in clip 1 to 120% and shift it left"
|
|
163
|
+
"Transcribe my timeline audio"
|
|
164
|
+
"Isolate the vocals from my timeline"
|
|
165
|
+
"Remove the background from clip 1 on video track 1"
|
|
166
|
+
"Apply this LUT to node 1 of the current clip"
|
|
167
|
+
"Set up an MP4 H.265 render and start it"
|
|
168
|
+
"Export the timeline as FCPXML"
|
|
169
|
+
"Grab a still from the current frame"
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## 🔁 Works With the Full Pipeline
|
|
175
|
+
|
|
176
|
+
This is one piece of a three-server video production setup:
|
|
177
|
+
|
|
178
|
+
| Server | What it does |
|
|
179
|
+
|--------|-------------|
|
|
180
|
+
| **This (DaVinci Resolve MCP)** | Controls Resolve — timelines, clips, color, rendering, local AI |
|
|
181
|
+
| [**mcp-image-gen**](https://github.com/hiteshK03/mcp-image-gen) | Generates images locally (backgrounds, textures, overlays) — no API keys |
|
|
182
|
+
| **Video Editor MCP** | File-based video processing (ffmpeg, overlays, transitions) — no Resolve needed |
|
|
183
|
+
|
|
184
|
+
The AI assistant orchestrates across all three automatically. Generate an image → import into Resolve → place on timeline → adjust properties — all from a single conversation.
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## 📋 Free vs Studio Compatibility
|
|
189
|
+
|
|
190
|
+
| Feature | Studio | Free + This Project |
|
|
191
|
+
|---------|--------|-------------------|
|
|
192
|
+
| Timeline editing, clips, markers | ✅ | ✅ |
|
|
193
|
+
| Color grading, LUTs, CDL | ✅ | ✅ |
|
|
194
|
+
| Rendering, export | ✅ | ✅ |
|
|
195
|
+
| Media pool, project management | ✅ | ✅ |
|
|
196
|
+
| Fusion compositions | ✅ | ✅ |
|
|
197
|
+
| Gallery & stills | ✅ | ✅ |
|
|
198
|
+
| Voice Isolation | ✅ Neural Engine | ✅ Demucs v4 (local) |
|
|
199
|
+
| Background Removal | ✅ Magic Mask | ✅ rembg/BiRefNet (local) |
|
|
200
|
+
| Auto Subtitles | ✅ Neural Engine | ✅ faster-whisper (local) |
|
|
201
|
+
| Smart Reframe | ✅ | ❌ |
|
|
202
|
+
| Stabilization | ✅ | ❌ |
|
|
203
|
+
|
|
204
|
+
**155/162 tools work on Free. The 5 that don't have local AI replacements. Only 2 have no alternative (Smart Reframe, Stabilization).**
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## ⚠️ Limitations
|
|
209
|
+
|
|
210
|
+
- **Keyframe animations** — the scripting API only supports static property values, not animated keyframes
|
|
211
|
+
- **Fusion node parameters** — text content and effect values inside compositions need the Fusion page UI
|
|
212
|
+
- **Transitions** — must be added manually from the Effects Library
|
|
213
|
+
- **Background removal on video** — CPU-bound, can be slow for long clips
|
|
214
|
+
- **Gallery stills** — require being on the Color page
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## 📄 License
|
|
219
|
+
|
|
220
|
+
MIT — use it however you want.
|