davinci-resolve-mcp 4.8.8 → 4.8.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 CHANGED
@@ -2,6 +2,98 @@
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.8.9 — the offline suite's child processes no longer reach Resolve
6
+
7
+ Test-only. No tool, action or runtime code changed.
8
+
9
+ ### Fixed
10
+
11
+ - **The control panels the suite starts connected to the open Resolve.** The
12
+ offline guard swaps the servers' entry points and installs its stand-in finder
13
+ inside the test process. None of it reaches a child process.
14
+ `server._open_control_panel` starts the real `src/analysis_dashboard.py` with
15
+ `subprocess.Popen`. That child imported Blackmagic's module and called
16
+ `scriptapp("Resolve")` through `_connect_resolve_read_only`: at startup, in the
17
+ inventory warm-up, and for `/api/boot`. Measured on v4.8.4 with a tripwire
18
+ standing in for the library, a full `python -m unittest discover -s tests -t .`
19
+ run made 6 calls from 3 panel children. Two children came from
20
+ `test_control_panel_ipv6_loopback`, whose docstring says "No Resolve". The third
21
+ came from `test_tool_argument_validation`, which calls every action with no
22
+ arguments, `open_control_panel` included. v4.8.5 attributed that third child to
23
+ `test_open_control_panel`, but every test there stubs the port probe and none of
24
+ them starts a panel.
25
+ - The guard now puts `tests/offline_child_site` first on PYTHONPATH, so every
26
+ Python child that inherits the environment runs its `sitecustomize.py` at
27
+ startup. That file answers `DaVinciResolveScript` and `fusionscript` with an
28
+ empty stand-in from a `sys.meta_path` finder, as the test process does. The
29
+ stand-in has no `scriptapp`, and its error names the guard. A panel started by
30
+ a test now reports `Resolve connection failed: DaVinciResolveScript is the
31
+ offline test guard's stand-in …` from `/api/boot`.
32
+ - It also refuses to launch the application through `subprocess` in a child.
33
+ A child that imports `src.server` and calls a tool falls through
34
+ `get_resolve()` to `_launch_resolve()` whenever Resolve is closed, and the
35
+ in-process swap of that function does not exist in a child. The check matches
36
+ the commands `resolve_runtime.launch_command` builds on each platform, any
37
+ other program inside an installation such as `fuscript`, and `open` or
38
+ `osascript` naming the app. Only the program is checked, so a Python child that
39
+ merely mentions the bundle path still runs.
40
+ - It runs the `sitecustomize` it shadows first, because Python loads only one.
41
+ Homebrew's Python ships one that rewrites `sys.prefix` and `sys.path`. A
42
+ developer's tripwire is often one too, and it typically chains to "the next
43
+ sitecustomize that is not me", which is now the guard. Before the guard
44
+ tracked what had already run, the two files chained into each other until
45
+ `RecursionError`. The tripwire then ended up answering the import, and the
46
+ guard was never installed. The chain now continues past the guard to the file
47
+ the tripwire would have reached, and the guard's stand-in goes in front last.
48
+ - The bridge redirect from v4.8.5 reaches children through the environment.
49
+ That covers the doctor probe as well. It replaces PYTHONPATH and so never runs
50
+ the new file, and it calls `connect_resolve(None)`, which is the bridge's route.
51
+
52
+ ### Validation
53
+
54
+ - New `tests/test_offline_guard_child_process.py`, 14 tests. The main one starts the
55
+ real panel the way the suite does. Fakes shaped like Blackmagic's pair sit on
56
+ PYTHONPATH behind the guard: a `DaVinciResolveScript.py` loader that hands over
57
+ `fusionscript`, and a `scriptapp` that records every call to a file. The test
58
+ asserts that `/api/boot` names the guard's stand-in and that neither fake was
59
+ loaded. A control child without the guard does reach the fake `scriptapp`. The
60
+ other tests cover the stand-in answering both names again after a
61
+ `sys.modules` pop, a shadowed `sitecustomize` still running, and a chaining one
62
+ reaching the file after the guard. They also cover a second checkout's copy not
63
+ chaining in, the launch check against `launch_command` for three platforms and
64
+ both modes, other launch forms, ordinary children still running, a guarded child
65
+ refusing a bundle-shaped program that does not exist, and the PYTHONPATH
66
+ install and restore.
67
+ - With the PYTHONPATH export removed from `install()`, the panel test fails
68
+ ("DaVinci Resolve is not connected"), and the tripwire records 4 `scriptapp`
69
+ calls from the panel child. With the chain tracking removed, both chaining
70
+ tests fail.
71
+ - Full suite, `python -m unittest discover -s tests -t .`: 3,770 tests. The 11
72
+ errors are the same as on v4.8.8 in this environment (no `numpy` or `requests`
73
+ in the venv, plus `test_offline_fallback` and `test_lut_file_controls`).
74
+ `python -m unittest discover -s tests` gives the same result. Both runs used a
75
+ scratch `sitecustomize` tripwire on PYTHONPATH, which chains to Homebrew's. It
76
+ answered the scripting modules with a recording module, refused native loads of
77
+ `fusionscript` and launches of the application, and redirected the bridge
78
+ config. It recorded no `scriptapp` call, native load or launch in the test
79
+ process or in any child it could see, and that includes 4 panel children per
80
+ run. The same tripwire on v4.8.4 recorded 6 panel-child calls.
81
+ - The tripwire could not see every child, and one of the children it missed
82
+ reached Resolve. `install.verify_resolve_connection` replaces PYTHONPATH with the
83
+ Blackmagic Modules directory, so its child loads neither the tripwire nor this
84
+ guard. `test_scripting_lib_discovery.test_the_live_probe_agrees_with_the_summary`
85
+ runs that probe for real whenever Resolve is installed. With Resolve open, each
86
+ of the four full runs behind this release most likely made one read-only
87
+ connection through it (`scriptapp`, `GetProductName`, `GetVersionString`). This
88
+ release does not close that path.
89
+ - Not covered: a child started with its own PYTHONPATH, as that probe and the
90
+ doctor probe are, with `-E` or `-I`, or with an environment built from scratch
91
+ does not run the file. Launches outside `subprocess` (`os.system`, `os.exec*`)
92
+ are not intercepted.
93
+ - pytest is not installed here, so the pytest path was not run locally. CI runs
94
+ `python -m pytest tests -q`.
95
+ - No Resolve behavior changed, so no live Resolve run is required. None was made.
96
+
5
97
  ## What's New in v4.8.8 — a test that reaches a Resolve launcher fails
6
98
 
7
99
  Test-only. No tool, action or runtime code changed.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  English | [简体中文](README.zh-CN.md)
4
4
 
5
- [![Version](https://img.shields.io/badge/version-4.8.8-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
5
+ [![Version](https://img.shields.io/badge/version-4.8.9-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
6
6
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
7
7
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
8
8
  [![Tools](https://img.shields.io/badge/MCP%20Tools-37%20(389%20full)-blue.svg)](#server-modes)
package/README.zh-CN.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [English](README.md) | 简体中文
4
4
 
5
- [![Version](https://img.shields.io/badge/version-4.8.8-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
5
+ [![Version](https://img.shields.io/badge/version-4.8.9-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
6
6
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
7
7
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
8
8
  [![Tools](https://img.shields.io/badge/MCP%20Tools-37%20(389%20full)-blue.svg)](#服务器模式)
@@ -12,7 +12,7 @@
12
12
  [![Python](https://img.shields.io/badge/python-3.10+-green.svg)](https://www.python.org/downloads/)
13
13
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
14
14
 
15
- > 本翻译对应 v4.8.8 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
15
+ > 本翻译对应 v4.8.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 = "4.8.8"
40
+ VERSION = "4.8.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "davinci-resolve-mcp",
3
- "version": "4.8.8",
3
+ "version": "4.8.9",
4
4
  "description": "NPM bootstrapper for the DaVinci Resolve MCP Server.",
5
5
  "license": "MIT",
6
6
  "author": "Samuel Gursky <samgursky@gmail.com>",
@@ -93,7 +93,7 @@ if not logging.getLogger().handlers:
93
93
  handlers=[logging.StreamHandler()],
94
94
  )
95
95
 
96
- VERSION = "4.8.8"
96
+ VERSION = "4.8.9"
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()}")
package/src/server.py CHANGED
@@ -11,7 +11,7 @@ Usage:
11
11
  python src/server.py --full # Start the 377-tool granular server instead
12
12
  """
13
13
 
14
- VERSION = "4.8.8"
14
+ VERSION = "4.8.9"
15
15
 
16
16
  import base64
17
17
  import os