davinci-resolve-mcp 2.104.8 → 2.104.9
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 +25 -0
- package/README.md +1 -1
- package/README.zh-CN.md +2 -2
- package/install.py +1 -1
- package/package.json +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
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.104.9
|
|
6
|
+
|
|
7
|
+
**The NTSC coverage gap, closed.** The conform fixtures were integer-rate
|
|
8
|
+
only — which is how parseEDL ran exact-rate timecode math against a
|
|
9
|
+
nominal-rate writer for years (fixed in v2.104.6, convention measured against
|
|
10
|
+
Resolve's own GetStartFrame). New fixtures now exercise the pipeline at
|
|
11
|
+
29.97: a broadcast-start EDL parses to nominal frames (an NDF minute is 1800
|
|
12
|
+
frames, butt cuts stay gapless), the EDL write→parse round trip is
|
|
13
|
+
frame-identical, media-inventory's tc↔frames round trip is the identity at
|
|
14
|
+
all three NTSC rates, and drop-frame pins to the canonical values
|
|
15
|
+
(01:00:00;00 → 107892 — the number that haunted the #168 saga, now living
|
|
16
|
+
where it belongs). Cross-language pin tests assert the Python converters
|
|
17
|
+
(_timecode_to_frame_id, multicam) and the Node converters agree on the same
|
|
18
|
+
canonical values, so a change that moves one side fails the other side's
|
|
19
|
+
suite.
|
|
20
|
+
|
|
21
|
+
**Python dependency stack: audited to zero.** pip-audit over the dev venv
|
|
22
|
+
found and cleared advisories in urllib3, requests, python-multipart,
|
|
23
|
+
setuptools, starlette (0.52 → 1.6 — the MCP SDK tolerated the major, full
|
|
24
|
+
suite green), pyjwt, pydantic-settings, pygments, pillow, idna, msgpack,
|
|
25
|
+
cryptography, pip itself, and torch 2.13 (with the matching torchvision).
|
|
26
|
+
Also found: the venv's mcp SDK was at 1.27.0, BELOW the repo's own >=1.29
|
|
27
|
+
floor, and carrying a CVE — now 1.29.1. Both stacks (npm and pip) report
|
|
28
|
+
zero known vulnerabilities, with clean resolver constraints.
|
|
29
|
+
|
|
5
30
|
## What's New in v2.104.8
|
|
6
31
|
|
|
7
32
|
More laps: the aggregation class swept to completion, and the dependency
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
English | [简体中文](README.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
6
6
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
7
7
|
[](docs/reference/api-coverage.md)
|
|
8
8
|
[-blue.svg)](#server-modes)
|
package/README.zh-CN.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) | 简体中文
|
|
4
4
|
|
|
5
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
6
6
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
7
7
|
[](docs/reference/api-coverage.md)
|
|
8
8
|
[-blue.svg)](#服务器模式)
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://www.python.org/downloads/)
|
|
13
13
|
[](https://opensource.org/licenses/MIT)
|
|
14
14
|
|
|
15
|
-
> 本翻译对应 v2.104.
|
|
15
|
+
> 本翻译对应 v2.104.9 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
|
|
16
16
|
|
|
17
17
|
一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
|
|
18
18
|
|
package/install.py
CHANGED
|
@@ -37,7 +37,7 @@ from src.utils.update_check import (
|
|
|
37
37
|
|
|
38
38
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
39
39
|
|
|
40
|
-
VERSION = "2.104.
|
|
40
|
+
VERSION = "2.104.9"
|
|
41
41
|
# Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
|
|
42
42
|
# Resolve's scripting bridge loads into newer interpreters on recent builds
|
|
43
43
|
# (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
|
package/package.json
CHANGED
package/src/granular/common.py
CHANGED
|
@@ -87,7 +87,7 @@ if not logging.getLogger().handlers:
|
|
|
87
87
|
handlers=[logging.StreamHandler()],
|
|
88
88
|
)
|
|
89
89
|
|
|
90
|
-
VERSION = "2.104.
|
|
90
|
+
VERSION = "2.104.9"
|
|
91
91
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
92
92
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
93
93
|
logger.info(f"Detected platform: {get_platform()}")
|