davinci-resolve-mcp 2.36.0 → 2.36.1

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,19 @@
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.36.1
6
+
7
+ Bug fix — restore the `fusion_comp` MCP tool.
8
+
9
+ - **Fixed** a regression from `32be0ec` (v2.33.0) that left `fusion_comp`
10
+ unregistered: a new `_parse_pos` helper was inserted between the `@mcp.tool()`
11
+ decorator and `def fusion_comp`, so the decorator landed on the private helper
12
+ instead. As a result `_parse_pos` was exposed as a tool while **all**
13
+ `fusion_comp` node-graph operations (`add_tool`, `connect`, `add_keyframe`,
14
+ `get_keyframes`, `copy_tool`, `set_position`, …) were missing from the tool
15
+ list. The decorator is restored to `fusion_comp` and `_parse_pos` is once
16
+ again a plain internal helper. Live-validated on DaVinci Resolve Studio 21.
17
+
5
18
  ## What's New in v2.36.0
6
19
 
7
20
  Optional networked transport — run the MCP server over the network, safely, with
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # DaVinci Resolve MCP Server
2
2
 
3
- [![Version](https://img.shields.io/badge/version-2.36.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
3
+ [![Version](https://img.shields.io/badge/version-2.36.1-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
4
4
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
5
5
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
6
6
  [![Tools](https://img.shields.io/badge/MCP%20Tools-32%20(341%20full)-blue.svg)](#server-modes)
package/install.py CHANGED
@@ -35,7 +35,7 @@ from src.utils.update_check import (
35
35
 
36
36
  # ─── Version ──────────────────────────────────────────────────────────────────
37
37
 
38
- VERSION = "2.36.0"
38
+ VERSION = "2.36.1"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "davinci-resolve-mcp",
3
- "version": "2.36.0",
3
+ "version": "2.36.1",
4
4
  "description": "NPM bootstrapper for the DaVinci Resolve MCP Server.",
5
5
  "license": "MIT",
6
6
  "author": "Samuel Gursky <samgursky@gmail.com>",
@@ -80,7 +80,7 @@ if not logging.getLogger().handlers:
80
80
  handlers=[logging.StreamHandler()],
81
81
  )
82
82
 
83
- VERSION = "2.36.0"
83
+ VERSION = "2.36.1"
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
@@ -11,7 +11,7 @@ Usage:
11
11
  python src/server.py --full # Start the 341-tool granular server instead
12
12
  """
13
13
 
14
- VERSION = "2.36.0"
14
+ VERSION = "2.36.1"
15
15
 
16
16
  import base64
17
17
  import os
@@ -18768,7 +18768,6 @@ def _fusion_boundary_report(comp, p: Dict[str, Any]):
18768
18768
  }
18769
18769
 
18770
18770
 
18771
- @mcp.tool()
18772
18771
  def _parse_pos(raw):
18773
18772
  """Normalize a FlowView position return into (x, y) floats, or None.
18774
18773
 
@@ -18834,6 +18833,7 @@ def _fusion_tool_names(comp):
18834
18833
  return [name for name, _ in _iter_fusion_tools(comp)]
18835
18834
 
18836
18835
 
18836
+ @mcp.tool()
18837
18837
  def fusion_comp(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str, Any]:
18838
18838
  """Fusion composition node graph operations.
18839
18839