davinci-resolve-mcp 2.57.2 → 2.57.3
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/CHANGELOG.md +19 -0
- package/README.md +1 -1
- package/docs/reference/api-limitations.md +68 -1
- package/install.py +1 -1
- package/package.json +1 -1
- package/scripts/gen_api_limitations.py +11 -0
- package/src/granular/common.py +1 -1
- package/src/server.py +1 -1
- package/src/utils/api_truth.py +102 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
Release history for the DaVinci Resolve MCP Server. The latest release is summarized in the root README; older entries live here to keep the README focused.
|
|
4
4
|
|
|
5
|
+
## What's New in v2.57.3
|
|
6
|
+
|
|
7
|
+
Expanded the API-limitations catalogue with a live surface audit.
|
|
8
|
+
|
|
9
|
+
- **Added** 8 newly-catalogued **missing capabilities** to
|
|
10
|
+
`docs/reference/api-limitations.md`, found by a `dir()` audit of the live
|
|
11
|
+
Resolve 21.0.0 API objects diffed against the UI feature set: timeline-item
|
|
12
|
+
trim/move/re-time (getters only, no setters), razor/blade/split, clip
|
|
13
|
+
speed/retime ratio & ramps, color node-graph editing + primary grade values,
|
|
14
|
+
Fairlight audio levels/pan/EQ/automation/FairlightFX, proxy/optimized-media
|
|
15
|
+
generation, insert/overwrite/replace/fit-to-fill edit modes, and Smart/Power
|
|
16
|
+
Bin creation. The report now lists 14 missing capabilities + 9 bugs.
|
|
17
|
+
- **Verified** the four previously-doc-derived entries (per-clip audio
|
|
18
|
+
stereo↔mono, native multicam creation, transitions, cloud list/export/user)
|
|
19
|
+
against the live API surface; all confirmed absent.
|
|
20
|
+
- **Changed** the generated report to carry an explicit **Scope & completeness**
|
|
21
|
+
note — it is not guaranteed exhaustive (surface audit + incident log; misses
|
|
22
|
+
parameters that exist-but-misbehave and untested capabilities).
|
|
23
|
+
|
|
5
24
|
## What's New in v2.57.2
|
|
6
25
|
|
|
7
26
|
Consolidated, submittable list of Resolve scripting-API limitations.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# DaVinci Resolve MCP Server
|
|
2
2
|
|
|
3
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
4
4
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
5
5
|
[](docs/reference/api-coverage.md)
|
|
6
6
|
[-blue.svg)](#server-modes)
|
|
@@ -12,12 +12,23 @@ that none exists).
|
|
|
12
12
|
|
|
13
13
|
**Verified on:** DaVinci Resolve Studio 21.0.0
|
|
14
14
|
|
|
15
|
-
**Totals:**
|
|
15
|
+
**Totals:** 14 missing capabilities, 9 bugs / unreliable behaviors.
|
|
16
16
|
|
|
17
17
|
The authoritative source is the runtime-queryable `api_truth` ledger
|
|
18
18
|
(`resolve_control api_truth "<query>"`); this document is generated from
|
|
19
19
|
it and stays in sync via a drift guard.
|
|
20
20
|
|
|
21
|
+
### Scope & completeness
|
|
22
|
+
|
|
23
|
+
This list is **not guaranteed exhaustive.** It combines (a) issues hit
|
|
24
|
+
while building this MCP server and (b) a `dir()` surface audit of the live
|
|
25
|
+
Resolve API objects (ProjectManager, Project, MediaPool, MediaPoolItem,
|
|
26
|
+
Timeline, TimelineItem, Graph) diffed against Resolve's UI feature set.
|
|
27
|
+
That catches absent methods and documented constraints, but not subtler
|
|
28
|
+
issues: parameters that exist yet misbehave, version-specific regressions,
|
|
29
|
+
or capabilities we simply never exercised. New findings are added as
|
|
30
|
+
`submit`-tagged `api_truth` entries and this document is regenerated.
|
|
31
|
+
|
|
21
32
|
## Missing Capabilities (please add)
|
|
22
33
|
|
|
23
34
|
Functionality that exists in the Resolve UI but has no scripting API
|
|
@@ -67,6 +78,62 @@ equivalent, blocking full automation.
|
|
|
67
78
|
- **Workaround / current handling:** Drive cloud project listing, export, and collaborator management from the Resolve UI; only create/load/import/restore are scriptable.
|
|
68
79
|
- **Tags:** missing-method, project, cloud
|
|
69
80
|
|
|
81
|
+
### TimelineItem trim / move / re-time (no position setters)
|
|
82
|
+
|
|
83
|
+
- **Object:** `TimelineItem`
|
|
84
|
+
- **Behavior:** TimelineItem exposes GetStart, GetEnd, GetDuration, GetLeftOffset, GetRightOffset and GetSourceStart/EndFrame, but NO matching setters. A clip cannot be trimmed, slipped, slid, rolled, moved to another time/track, or have its duration changed once it is on the timeline. Verified via dir() on Resolve 21.0.0 (getters only).
|
|
85
|
+
- **Workaround / current handling:** Do edit-point adjustments in the Resolve UI, or rebuild the timeline from MediaPool.AppendToTimeline clipInfos with the desired startFrame/endFrame/recordFrame.
|
|
86
|
+
- **Tags:** missing-method, timeline, edit, trim
|
|
87
|
+
|
|
88
|
+
### Razor / blade / split a timeline item
|
|
89
|
+
|
|
90
|
+
- **Object:** `Timeline / TimelineItem`
|
|
91
|
+
- **Behavior:** There is no method to split/cut/blade a clip at a given frame. Verified absent on Timeline and TimelineItem (dir(), 21.0.0).
|
|
92
|
+
- **Workaround / current handling:** Split in the Resolve UI, or construct the cut up-front by appending two clipInfos with the desired in/out points.
|
|
93
|
+
- **Tags:** missing-method, timeline, edit
|
|
94
|
+
|
|
95
|
+
### Clip speed / retime ratio and speed ramps
|
|
96
|
+
|
|
97
|
+
- **Object:** `TimelineItem`
|
|
98
|
+
- **Behavior:** SetProperty exposes only retime *quality* (RetimeProcess, MotionEstimation) and transform/crop/composite/opacity keys — not the speed value itself. There is no way to set a clip to a given % speed, reverse it, or author a speed ramp. Verified against the documented SetProperty key list (21.0.0).
|
|
99
|
+
- **Workaround / current handling:** Set clip speed/retime in the Resolve UI; no scripted equivalent exists.
|
|
100
|
+
- **Tags:** missing-method, timeline, retime, speed
|
|
101
|
+
|
|
102
|
+
### Color node graph editing and primary grade values
|
|
103
|
+
|
|
104
|
+
- **Object:** `Graph / TimelineItem`
|
|
105
|
+
- **Behavior:** The Graph object exposes node enable/label/count, LUT get/set, cache mode, ResetAllGrades, ApplyGradeFromDRX and ApplyArriCdlLut; TimelineItem adds SetCDL, CopyGrades and color versions. But you cannot add, delete, or connect nodes, and you cannot read or write primary grade values (lift/gamma/gain/offset/contrast/curves/qualifiers/power windows). Grading is limited to CDL, whole-grade DRX/LUT application and copying.
|
|
106
|
+
- **Workaround / current handling:** Build node trees and dial grades in the Resolve UI or via DRX/CDL/LUT import; per-parameter grade control is not scriptable.
|
|
107
|
+
- **Tags:** missing-method, color, grade, node
|
|
108
|
+
|
|
109
|
+
### Fairlight audio levels / pan / EQ / automation / FairlightFX
|
|
110
|
+
|
|
111
|
+
- **Object:** `TimelineItem / Timeline`
|
|
112
|
+
- **Behavior:** There is no API to set clip or track volume, pan, EQ, audio automation, or to add/configure FairlightFX. SetProperty covers video transform only; the audio surface is read-only (GetSourceAudioChannelMapping, GetAudioMapping, voice isolation). Verified via dir() + SetProperty docs (21.0.0).
|
|
113
|
+
- **Workaround / current handling:** Mix in the Fairlight UI; only voice-isolation state and channel-mapping reads are scriptable.
|
|
114
|
+
- **Tags:** missing-method, audio, fairlight
|
|
115
|
+
|
|
116
|
+
### Proxy / optimized-media generation
|
|
117
|
+
|
|
118
|
+
- **Object:** `MediaPoolItem`
|
|
119
|
+
- **Behavior:** Only LinkProxyMedia, UnlinkProxyMedia and LinkFullResolutionMedia exist (attach/detach EXISTING proxies). There is no method to generate proxies or optimized media. Verified via MediaPoolItem dir() (21.0.0).
|
|
120
|
+
- **Workaround / current handling:** Trigger proxy/optimized-media generation from the Resolve UI; scripting can only link/unlink already-rendered proxies.
|
|
121
|
+
- **Tags:** missing-method, media-pool, proxy
|
|
122
|
+
|
|
123
|
+
### Insert / Overwrite / Replace / Fit-to-Fill edit modes
|
|
124
|
+
|
|
125
|
+
- **Object:** `MediaPool / Timeline`
|
|
126
|
+
- **Behavior:** MediaPool.AppendToTimeline (with optional recordFrame positioning) is the only programmatic placement. The standard edit modes — insert (ripple), overwrite, replace, fit-to-fill, place-on-top — have no API. Verified via dir() (21.0.0).
|
|
127
|
+
- **Workaround / current handling:** Position clips with AppendToTimeline clipInfo recordFrame, or perform insert/overwrite/replace edits in the Resolve UI.
|
|
128
|
+
- **Tags:** missing-method, timeline, edit
|
|
129
|
+
|
|
130
|
+
### Smart Bins / Power Bins creation
|
|
131
|
+
|
|
132
|
+
- **Object:** `MediaPool`
|
|
133
|
+
- **Behavior:** Only AddSubFolder (a regular bin) exists. Smart Bins (rule-based) and Power Bins (cross-project) cannot be created or configured. Verified via MediaPool dir() (21.0.0).
|
|
134
|
+
- **Workaround / current handling:** Create Smart/Power Bins in the Resolve UI; only regular bins are scriptable.
|
|
135
|
+
- **Tags:** missing-method, media-pool, bins
|
|
136
|
+
|
|
70
137
|
## Bugs / Unreliable Behavior (please fix)
|
|
71
138
|
|
|
72
139
|
Methods that exist but misbehave — silent failures, unreliable return
|
package/install.py
CHANGED
|
@@ -35,7 +35,7 @@ from src.utils.update_check import (
|
|
|
35
35
|
|
|
36
36
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
37
37
|
|
|
38
|
-
VERSION = "2.57.
|
|
38
|
+
VERSION = "2.57.3"
|
|
39
39
|
# Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
|
|
40
40
|
# Resolve's scripting bridge loads into newer interpreters on recent builds
|
|
41
41
|
# (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
|
package/package.json
CHANGED
|
@@ -82,6 +82,17 @@ def render() -> str:
|
|
|
82
82
|
"(`resolve_control api_truth \"<query>\"`); this document is generated from",
|
|
83
83
|
"it and stays in sync via a drift guard.",
|
|
84
84
|
"",
|
|
85
|
+
"### Scope & completeness",
|
|
86
|
+
"",
|
|
87
|
+
"This list is **not guaranteed exhaustive.** It combines (a) issues hit",
|
|
88
|
+
"while building this MCP server and (b) a `dir()` surface audit of the live",
|
|
89
|
+
"Resolve API objects (ProjectManager, Project, MediaPool, MediaPoolItem,",
|
|
90
|
+
"Timeline, TimelineItem, Graph) diffed against Resolve's UI feature set.",
|
|
91
|
+
"That catches absent methods and documented constraints, but not subtler",
|
|
92
|
+
"issues: parameters that exist yet misbehave, version-specific regressions,",
|
|
93
|
+
"or capabilities we simply never exercised. New findings are added as",
|
|
94
|
+
"`submit`-tagged `api_truth` entries and this document is regenerated.",
|
|
95
|
+
"",
|
|
85
96
|
"## Missing Capabilities (please add)",
|
|
86
97
|
"",
|
|
87
98
|
"Functionality that exists in the Resolve UI but has no scripting API",
|
package/src/granular/common.py
CHANGED
|
@@ -80,7 +80,7 @@ if not logging.getLogger().handlers:
|
|
|
80
80
|
handlers=[logging.StreamHandler()],
|
|
81
81
|
)
|
|
82
82
|
|
|
83
|
-
VERSION = "2.57.
|
|
83
|
+
VERSION = "2.57.3"
|
|
84
84
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
85
85
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
86
86
|
logger.info(f"Detected platform: {get_platform()}")
|
package/src/server.py
CHANGED
package/src/utils/api_truth.py
CHANGED
|
@@ -258,6 +258,108 @@ API_TRUTH: List[Dict[str, Any]] = [
|
|
|
258
258
|
"tags": ["missing-method", "project", "cloud"],
|
|
259
259
|
"submit": "missing",
|
|
260
260
|
},
|
|
261
|
+
{
|
|
262
|
+
"symbol": "TimelineItem trim / move / re-time (no position setters)",
|
|
263
|
+
"object": "TimelineItem",
|
|
264
|
+
"reality": "TimelineItem exposes GetStart, GetEnd, GetDuration, "
|
|
265
|
+
"GetLeftOffset, GetRightOffset and GetSourceStart/EndFrame, but "
|
|
266
|
+
"NO matching setters. A clip cannot be trimmed, slipped, slid, "
|
|
267
|
+
"rolled, moved to another time/track, or have its duration "
|
|
268
|
+
"changed once it is on the timeline. Verified via dir() on "
|
|
269
|
+
"Resolve 21.0.0 (getters only).",
|
|
270
|
+
"recommended": "Do edit-point adjustments in the Resolve UI, or rebuild the "
|
|
271
|
+
"timeline from MediaPool.AppendToTimeline clipInfos with the "
|
|
272
|
+
"desired startFrame/endFrame/recordFrame.",
|
|
273
|
+
"tags": ["missing-method", "timeline", "edit", "trim"],
|
|
274
|
+
"submit": "missing",
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"symbol": "Razor / blade / split a timeline item",
|
|
278
|
+
"object": "Timeline / TimelineItem",
|
|
279
|
+
"reality": "There is no method to split/cut/blade a clip at a given frame. "
|
|
280
|
+
"Verified absent on Timeline and TimelineItem (dir(), 21.0.0).",
|
|
281
|
+
"recommended": "Split in the Resolve UI, or construct the cut up-front by "
|
|
282
|
+
"appending two clipInfos with the desired in/out points.",
|
|
283
|
+
"tags": ["missing-method", "timeline", "edit"],
|
|
284
|
+
"submit": "missing",
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"symbol": "Clip speed / retime ratio and speed ramps",
|
|
288
|
+
"object": "TimelineItem",
|
|
289
|
+
"reality": "SetProperty exposes only retime *quality* (RetimeProcess, "
|
|
290
|
+
"MotionEstimation) and transform/crop/composite/opacity keys — "
|
|
291
|
+
"not the speed value itself. There is no way to set a clip to a "
|
|
292
|
+
"given % speed, reverse it, or author a speed ramp. Verified "
|
|
293
|
+
"against the documented SetProperty key list (21.0.0).",
|
|
294
|
+
"recommended": "Set clip speed/retime in the Resolve UI; no scripted "
|
|
295
|
+
"equivalent exists.",
|
|
296
|
+
"tags": ["missing-method", "timeline", "retime", "speed"],
|
|
297
|
+
"submit": "missing",
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"symbol": "Color node graph editing and primary grade values",
|
|
301
|
+
"object": "Graph / TimelineItem",
|
|
302
|
+
"reality": "The Graph object exposes node enable/label/count, LUT get/set, "
|
|
303
|
+
"cache mode, ResetAllGrades, ApplyGradeFromDRX and "
|
|
304
|
+
"ApplyArriCdlLut; TimelineItem adds SetCDL, CopyGrades and color "
|
|
305
|
+
"versions. But you cannot add, delete, or connect nodes, and you "
|
|
306
|
+
"cannot read or write primary grade values (lift/gamma/gain/"
|
|
307
|
+
"offset/contrast/curves/qualifiers/power windows). Grading is "
|
|
308
|
+
"limited to CDL, whole-grade DRX/LUT application and copying.",
|
|
309
|
+
"recommended": "Build node trees and dial grades in the Resolve UI or via "
|
|
310
|
+
"DRX/CDL/LUT import; per-parameter grade control is not "
|
|
311
|
+
"scriptable.",
|
|
312
|
+
"tags": ["missing-method", "color", "grade", "node"],
|
|
313
|
+
"submit": "missing",
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"symbol": "Fairlight audio levels / pan / EQ / automation / FairlightFX",
|
|
317
|
+
"object": "TimelineItem / Timeline",
|
|
318
|
+
"reality": "There is no API to set clip or track volume, pan, EQ, audio "
|
|
319
|
+
"automation, or to add/configure FairlightFX. SetProperty covers "
|
|
320
|
+
"video transform only; the audio surface is read-only "
|
|
321
|
+
"(GetSourceAudioChannelMapping, GetAudioMapping, voice "
|
|
322
|
+
"isolation). Verified via dir() + SetProperty docs (21.0.0).",
|
|
323
|
+
"recommended": "Mix in the Fairlight UI; only voice-isolation state and "
|
|
324
|
+
"channel-mapping reads are scriptable.",
|
|
325
|
+
"tags": ["missing-method", "audio", "fairlight"],
|
|
326
|
+
"submit": "missing",
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"symbol": "Proxy / optimized-media generation",
|
|
330
|
+
"object": "MediaPoolItem",
|
|
331
|
+
"reality": "Only LinkProxyMedia, UnlinkProxyMedia and "
|
|
332
|
+
"LinkFullResolutionMedia exist (attach/detach EXISTING proxies). "
|
|
333
|
+
"There is no method to generate proxies or optimized media. "
|
|
334
|
+
"Verified via MediaPoolItem dir() (21.0.0).",
|
|
335
|
+
"recommended": "Trigger proxy/optimized-media generation from the Resolve "
|
|
336
|
+
"UI; scripting can only link/unlink already-rendered proxies.",
|
|
337
|
+
"tags": ["missing-method", "media-pool", "proxy"],
|
|
338
|
+
"submit": "missing",
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"symbol": "Insert / Overwrite / Replace / Fit-to-Fill edit modes",
|
|
342
|
+
"object": "MediaPool / Timeline",
|
|
343
|
+
"reality": "MediaPool.AppendToTimeline (with optional recordFrame "
|
|
344
|
+
"positioning) is the only programmatic placement. The standard "
|
|
345
|
+
"edit modes — insert (ripple), overwrite, replace, fit-to-fill, "
|
|
346
|
+
"place-on-top — have no API. Verified via dir() (21.0.0).",
|
|
347
|
+
"recommended": "Position clips with AppendToTimeline clipInfo recordFrame, "
|
|
348
|
+
"or perform insert/overwrite/replace edits in the Resolve UI.",
|
|
349
|
+
"tags": ["missing-method", "timeline", "edit"],
|
|
350
|
+
"submit": "missing",
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"symbol": "Smart Bins / Power Bins creation",
|
|
354
|
+
"object": "MediaPool",
|
|
355
|
+
"reality": "Only AddSubFolder (a regular bin) exists. Smart Bins (rule-"
|
|
356
|
+
"based) and Power Bins (cross-project) cannot be created or "
|
|
357
|
+
"configured. Verified via MediaPool dir() (21.0.0).",
|
|
358
|
+
"recommended": "Create Smart/Power Bins in the Resolve UI; only regular "
|
|
359
|
+
"bins are scriptable.",
|
|
360
|
+
"tags": ["missing-method", "media-pool", "bins"],
|
|
361
|
+
"submit": "missing",
|
|
362
|
+
},
|
|
261
363
|
{
|
|
262
364
|
"symbol": "subprocess inheriting stdin under the MCP stdio server",
|
|
263
365
|
"object": "(server runtime)",
|