DaVinci Resolve MCP Server
Provides comprehensive control over DaVinci Resolve's Scripting API, enabling AI agents to manage projects, timelines, media, color grading, rendering, Fusion compositions, Fairlight audio, and more.
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 Resolve MCP ServerShow me the current timeline name and frame range"
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 Resolve MCP Server
The most complete MCP server for DaVinci Resolve's Scripting API. Control projects, timelines, media, color grading, rendering, and more from any MCP-compatible client.
Features
212 tools across 15 domains (playback, project, media storage, media pool, clips, timelines, timeline items, render, color, Fusion, gallery, Fairlight, extensions, media analysis, grade exchange)
3 resources for quick context (
resolve://system,resolve://project,resolve://timeline)Complete API coverage of the DaVinci Resolve Scripting API (Phases 1-3)
Offline authoring & analysis (Phase 4): DCTL/Fuse/script installers, FFmpeg probe / frame extraction / QC, and ASC CDL grade exchange — all work on the free edition with Resolve closed, since they never touch the scripting bridge
Pydantic v2 models for type-safe inputs and outputs
Pagination for large clip and timeline item lists
Auto-reconnect if Resolve restarts or becomes unresponsive
Platform auto-detection for macOS, Windows, and Linux
Related MCP server: resolve-mcp
Requirements
DaVinci Resolve 18+
Studio for the scripting-bridge tools (the 189 live tools). External Python scripting is a Studio-only feature — on the free edition
scriptapp("Resolve")returnsNone, so live tools cannot connect.The free edition is enough for the 23 offline tools (extensions, media analysis, grade exchange), which only touch the filesystem and FFmpeg.
Python 3.11+
macOS, Windows, or Linux
Optional: FFmpeg on PATH (or
FFMPEG_BINARY/FFPROBE_BINARY) for the media analysis tools; a Whisper backend (faster-whisper) for transcription
Quick Start
Install from PyPI
pip install davinci-resolve-mcpOr with uv:
uv pip install davinci-resolve-mcpClaude Desktop Configuration
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"davinci-resolve": {
"command": "davinci-resolve-mcp"
}
}
}Then restart Claude Desktop. DaVinci Resolve must be running for tools to work.
See docs/CLAUDE_DESKTOP.md for a detailed setup guide with troubleshooting.
Development Setup
git clone https://github.com/luquimbo/davinci-resolve-mcp.git
cd davinci-resolve-mcp
uv sync --dev
uv run davinci-resolve-mcpVerify Your Setup
python scripts/check_resolve.pyThis prints Resolve version, current project, and timeline info to confirm the scripting bridge is working.
Tool Domains
Domain | Module | Tools | Description |
Playback |
| 7 | Page navigation, timecode, playhead position, version info |
Project |
| 21 | CRUD, settings, import/export (.drp), database folders, archive/restore, DB list |
Media Storage |
| 4 | Browse mounted volumes, list files, import to media pool |
Media Pool |
| 14 | Folder CRUD, clip management, timeline creation, metadata export |
Clips |
| 21 | Clip metadata, properties, colors, markers, flags, proxy, transcription, replace |
Timeline |
| 29 | CRUD, tracks, items, markers, export (AAF/EDL/FCPXML), compound/Fusion clips, scene detection, auto-subtitles, settings |
Timeline Items |
| 27 | Transform, crop, composite, color, markers, flags, takes, unique ID, stabilize, smart reframe, nodes |
Render |
| 14 | Formats, codecs, presets, job queue, start/stop, progress monitoring |
Color |
| 24 | Nodes, LUTs, CDL, grade versions, DRX application, color groups, node labels |
Fusion |
| 11 | Compositions CRUD, generators, titles, tool listing |
Gallery |
| 14 | Still albums, grab/import/export stills, PowerGrades, grade application |
Fairlight |
| 3 | Audio insertion, presets listing, preset application |
Extensions |
| 12 | Offline. Install/read/list/remove DCTLs, Fuses, and Fusion scripts on disk |
Media Analysis |
| 7 | Offline. FFmpeg probe, frame extraction, black/silence QC, Whisper transcription |
Grade Exchange |
| 4 | Offline. ASC CDL read/write ( |
Offline domains (extensions, media analysis, grade exchange) do not use the Resolve scripting bridge, so they run on the free edition and with Resolve closed. Everything else requires DaVinci Resolve Studio (external Python scripting is a Studio-only feature).
Resources (read-only context, no tool call needed):
URI | Description |
| Resolve version, product name, current page |
| Project name, timeline count, resolution, frame rate |
| Timeline name, frame range, track counts, timecode |
Architecture
src/davinci_resolve_mcp/
server.py FastMCP instance, registers all modules, CLI entry point
resolve_api.py Lazy singleton with platform auto-detection and health checks
platform_paths.py Cross-platform Resolve support-dir resolution (LUT/Fuses/Scripts)
models.py Pydantic models (CDLValues for ASC color correction)
constants.py Enums for pages, track types, clip colors, marker colors, export types
exceptions.py ResolveNotRunning, ResolveOperationFailed
tools/
playback.py Page navigation, timecode, version
project.py Project CRUD, settings, folders, import/export
media_storage.py Volume browsing, file listing, import
media_pool.py Folder CRUD, clip management, timeline creation
media_pool_item.py Clip metadata, properties, markers, flags
timeline.py Timeline CRUD, tracks, items, markers
timeline_item.py Transform, crop, composite, color, markers
render.py Formats, codecs, presets, jobs, rendering
color.py Nodes, LUTs, CDL, versions, groups
fusion.py Compositions, generators, titles
gallery.py Stills, albums, PowerGrades
fairlight.py Audio insertion, presets
extensions.py Offline DCTL/Fuse/script authoring (filesystem)
media_analysis.py Offline FFmpeg probe, frames, QC, transcription
cdl.py Offline ASC CDL read/write, .drx inspection
_offline_helpers.py Safe filenames + ffmpeg/ffprobe discovery
resources/
system_info.py resolve://system
project_info.py resolve://project
timeline_info.py resolve://timelineKey patterns:
Lazy singleton (
ResolveAPI): Connects to Resolve on first access, not at import time. AGetVersion()health check runs on every access to detect stale references and reconnect automatically.One module per domain: Each tool module exports a
register(mcp)function that decorates tool functions with@mcp.tool().Defensive error handling: Every API call catches
AttributeError(stale scripting bridge) and re-raises asResolveNotRunning. Version-specific methods are wrapped so missing APIs return clear errors instead of crashes.Pagination: Large lists (clips, timeline items) support
offsetandlimitparameters, returninghas_moreto signal additional pages.
See docs/ARCHITECTURE.md for the full design document.
Testing
# Unit tests (no Resolve needed)
uv run pytest
# Integration tests (requires Resolve running)
uv run pytest -m integrationScope
The 189 scripting-bridge tools (v0.1.0) cover core editing, color grading, Fusion compositions, gallery stills, Fairlight audio, timeline export, compound clips, transcription, takes management, scene detection, auto-subtitles, stabilization, smart reframe, project archival, and database management.
v0.2.0 adds 23 offline tools (212 total) that work on the free edition with Resolve closed: DCTL/Fuse/script authoring, FFmpeg-based media probe / frame extraction / black+silence QC / Whisper transcription, and ASC CDL (.cdl/.ccc) grade exchange plus .drx inspection.
Auto-Generated Tool Reference
Run the following to generate a complete tool reference from the registered MCP tools:
python scripts/generate_tool_docs.pyThis creates docs/TOOLS.md with every tool name, description, parameters, and return type grouped by domain.
Contributing
See CONTRIBUTING.md.
License
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceExposes 20 tools for project, media, render, and timeline control in DaVinci Resolve 18+ via stdio MCP, enabling AI agents to operate the software through natural language.51MIT
- Alicense-qualityFmaintenanceComprehensive MCP server for DaVinci Resolve with 295+ tools to control projects, timelines, editing, color grading, rendering, and more via natural language.3MIT
- Alicense-qualityDmaintenanceAn MCP server that exposes the complete DaVinci Resolve scripting API, enabling AI assistants to control DaVinci Resolve programmatically with over 440 tools for project management, timeline editing, color grading, rendering, and more.5MIT
- Alicense-qualityBmaintenanceLets AI clients inspect and control DaVinci Resolve projects via MCP tools.108MIT
Related MCP Connectors
Control Unreal Engine to browse assets, import content, and manage levels and sequences. Automate…
A complete color workflow over MCP: mix, convert, harmonize, measure, and remember palettes.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/luquimbo/davinci-resolve-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server