DaVinci MCP Professional
Exposes the full range of functionality of DaVinci Resolve and DaVinci Resolve Studio to MCP clients, enabling programmatic control and integration with the video editing software.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DaVinci MCP Professionaladd a cross dissolve transition between the last two clips on the timeline"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DaVinci MCP Professional
An enterprise-grade Model Context Protocol (MCP) server that exposes the full DaVinci Resolve scripting API to AI assistants. This project is a hard fork of davinci-resolve-mcp by @samuelgursky, rewritten and maintained independently.
Supported MCP clients: Claude Desktop (primary), Gemini CLI, ChatGPT.
Prerequisites
DaVinci Resolve Studio installed and licensed (the free edition does not support external scripting)
Python 3.10 or later, installed system-wide (the installer from python.org with "Add to PATH" and "Install for all users" selected). On Windows, DaVinci Resolve locates Python through the Windows registry; a uv-managed or user-only Python install will not be found and will cause a crash.
uv — fast Python package and virtual environment manager
Related MCP server: DaVinci Resolve MCP
Installation
From source (recommended)
git clone https://github.com/Positronikal/davinci-mcp-professional.git
cd davinci-mcp-professional
uv venv
uv syncStandalone Windows executable
Download the pre-built Windows binaries from Releases. No Python installation required.
The release includes two executables:
Executable | Purpose |
| MCP server — launched automatically by Claude Desktop (or another MCP client). Communicates over stdio with no console output. Use this in your |
| Interactive CLI — for running the server manually in a terminal. Displays a startup banner, checks that DaVinci Resolve is running, and supports |
Most users only need davinci-mcp-server.exe configured in their MCP client.
davinci-mcp.exe is useful for troubleshooting or verifying that the server
can connect to Resolve before configuring a client.
Configuring Claude Desktop
Locate or create your claude_desktop_config.json file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the server entry:
Running from source (Windows):
{
"mcpServers": {
"davinci-resolve": {
"name": "DaVinci MCP Professional",
"command": "C:\\path\\to\\davinci-mcp-professional\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\davinci-mcp-professional\\mcp_server.py"]
}
}
}Running from source (macOS):
{
"mcpServers": {
"davinci-resolve": {
"name": "DaVinci MCP Professional",
"command": "/path/to/davinci-mcp-professional/.venv/bin/python",
"args": ["/path/to/davinci-mcp-professional/mcp_server.py"]
}
}
}Using the standalone Windows executable:
{
"mcpServers": {
"davinci-resolve": {
"name": "DaVinci MCP Professional",
"command": "C:\\path\\to\\davinci-mcp-server\\davinci-mcp-server.exe",
"args": []
}
}
}Restart Claude Desktop after saving the config.
Other Supported Clients
Gemini CLI and ChatGPT support the MCP standard and can connect to this
server using the same mcp_server.py entry point. Their MCP integration is
still maturing — consult each client's documentation for the current
configuration method.
Basic Usage
Start DaVinci Resolve and wait for it to fully load.
Start the MCP server (Claude Desktop does this automatically when configured).
Ask your AI assistant to interact with Resolve:
What version of DaVinci Resolve is running?
List all projects in the database.
Create a new timeline called "Act 1".
Switch to the Color page.
Import /path/to/clip.mp4 into the media pool.Further Reading
Document | Purpose |
Developer setup, build instructions, contributing | |
Troubleshooting and bug reporting | |
Contribution guidelines | |
GPL-3.0 license |
For developer setup, build instructions, and contribution guidelines, see USING.md.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Positronikal/davinci-mcp-professional'
If you have feedback or need assistance with the MCP directory API, please join our Discord server