davinci-resolve-mcp 4.6.1 → 4.6.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/CHANGELOG.md +15 -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 +6 -4
- package/src/server.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
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 v4.6.2 — the granular server's macOS temp-path redirect matches the compound server's
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **`_resolve_safe_dir` had two copies that disagreed on macOS.** ([#235](https://github.com/samuelgursky/davinci-resolve-mcp/pull/235), @Dev-next-gen)
|
|
10
|
+
The compound server redirects `/tmp`, `/tmp/...`, `/private/tmp` and `/private/tmp/...`
|
|
11
|
+
to `~/Documents/resolve-stills`, because Resolve's exporters fail silently into them
|
|
12
|
+
(live-verified 2026-07-03); the granular copy only knew `/var/` and `/private/var/`.
|
|
13
|
+
Two granular tools reach it with a `/tmp` path: `save_project`'s export fallback
|
|
14
|
+
stages in `tempfile.gettempdir()`, which is `/tmp` when `TMPDIR` is unset, and
|
|
15
|
+
`encrypt_dctl` resolves its output folder, so `/tmp` arrives as `/private/tmp`. The
|
|
16
|
+
granular helper now carries the same Darwin condition, and
|
|
17
|
+
`tests/test_granular_safe_dir.py` asserts both copies agree on a set of paths. Linux
|
|
18
|
+
and Windows are untouched.
|
|
19
|
+
|
|
5
20
|
## What's New in v4.6.1 — copy_grades refuses an all-missing target set before spending a confirmation
|
|
6
21
|
|
|
7
22
|
### Fixed
|
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
|
-
> 本翻译对应 v4.6.
|
|
15
|
+
> 本翻译对应 v4.6.2 版 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 = "4.6.
|
|
40
|
+
VERSION = "4.6.2"
|
|
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
|
@@ -93,7 +93,7 @@ if not logging.getLogger().handlers:
|
|
|
93
93
|
handlers=[logging.StreamHandler()],
|
|
94
94
|
)
|
|
95
95
|
|
|
96
|
-
VERSION = "4.6.
|
|
96
|
+
VERSION = "4.6.2"
|
|
97
97
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
98
98
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
99
99
|
logger.info(f"Detected platform: {get_platform()}")
|
|
@@ -342,13 +342,15 @@ class ResolveProxy:
|
|
|
342
342
|
def _resolve_safe_dir(path):
|
|
343
343
|
"""Redirect sandbox/temp paths that Resolve can't access to ~/Desktop/resolve-stills.
|
|
344
344
|
|
|
345
|
-
Covers macOS (/var/folders, /private/var
|
|
346
|
-
and Windows (AppData\\Local\\Temp) sandbox temp directories.
|
|
345
|
+
Covers macOS (/var/folders, /private/var, /tmp, /private/tmp), Linux (/tmp,
|
|
346
|
+
/var/tmp), and Windows (AppData\\Local\\Temp) sandbox temp directories.
|
|
347
347
|
"""
|
|
348
348
|
system_temp = tempfile.gettempdir()
|
|
349
349
|
_is_sandbox = False
|
|
350
350
|
if platform.system() == "Darwin":
|
|
351
|
-
|
|
351
|
+
# /tmp is a symlink to /private/tmp on macOS; Resolve's exporters fail
|
|
352
|
+
# silently into both, same as /var/folders (matches src/server.py).
|
|
353
|
+
_is_sandbox = path.startswith(("/var/", "/private/var/", "/tmp/", "/private/tmp/")) or path in ("/tmp", "/private/tmp")
|
|
352
354
|
elif platform.system() == "Linux":
|
|
353
355
|
_is_sandbox = path.startswith("/tmp") or path.startswith("/var/tmp")
|
|
354
356
|
elif platform.system() == "Windows":
|