A Model Context Protocol (MCP) server for interacting with DaVinci Resolve and Fusion. This server allows AI assistants like Claude to directly interact with and control DaVinci Resolve through the Model Context Protocol.
bash
git clone https://github.com/apvlv/davinci-resolve-mcp.git
cd davinci-resolve-mcp
bash
pip install -r requirements.txt
bash
mcp install src/resolve_mcp/server.py
bash
mcp install src/resolve_mcp/server.py --with-editable .
5ire is an open-source cross-platform desktop AI assistant and MCP client that's compatible with this server.
bash
brew tap brewforge/extras
brew install --cask 5ire
project://current
- Get information about the current projectproject://timelines
- Get a list of timelines in the current projecttimeline://current
- Get information about the current timelinemediapool://folders
- Get a list of folders in the media poolmediapool://current
- Get information about the current media pool folderstorage://volumes
- Get a list of mounted volumes in the media storagesystem://status
- Get the current status of the DaVinci Resolve connectioncreate_project(name)
- Create a new DaVinci Resolve projectload_project(name)
- Load an existing DaVinci Resolve projectsave_project()
- Save the current DaVinci Resolve projectcreate_timeline(name)
- Create a new timeline in the current projectset_current_timeline(index)
- Set the current timeline by index (1-based)import_media(file_paths)
- Import media files into the current media pool foldercreate_folder(name)
- Create a new folder in the current media pool foldercreate_timeline_from_clips(name, clip_indices)
- Create a new timeline from clips in the current media pool folderadd_fusion_comp_to_clip(timeline_index, track_type, track_index, item_index)
- Add a Fusion composition to a clip in the timelinecreate_fusion_node(node_type, parameters)
- Create a specific Fusion node in the current compositioncreate_fusion_node_chain(node_chain)
- Create a chain of connected Fusion nodes in the current compositionopen_page(page_name)
- Open a specific page in DaVinci Resolve (media, edit, fusion, color, fairlight, deliver)execute_python(code)
- Execute arbitrary Python code in DaVinci Resolveexecute_lua(script)
- Execute a Lua script in DaVinci Resolve's FusionThe server uses the Model Context Protocol to communicate between Claude and DaVinci Resolve. It leverages DaVinci Resolve's Python API to control the application.
MIT
A Model Context Protocol (MCP) server for interacting with DaVinci Resolve and Fusion.