Skill

deliver

One-command render and export from DaVinci Resolve. Accepts a preset name or shorthand like "h265 4k", "prores proxy", "youtube", "instagram".

From resolve-mcp
Install
1
Run in your terminal
$
npx claudepluginhub jenkinsm13/resolve-mcp
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

/deliver — Quick Render & Export

Set up render settings, add the job, start rendering, and poll until complete — all in one command.

Arguments

The user provides a delivery target as free text. Map it to Resolve render settings:

ShorthandFormatCodecResolutionNotes
h265 4k or 4kMP4H.2653840x2160Default high-quality delivery
h265 1080 or 1080MP4H.2651920x1080Standard HD
h264 1080MP4H.2641920x1080Maximum compatibility
prores or prores 422QuickTimeApple ProRes 422Timeline resolutionEditing/mastering codec
prores proxyQuickTimeApple ProRes 422 ProxyTimeline resolutionLightweight proxy
prores hqQuickTimeApple ProRes 422 HQTimeline resolutionHigh quality
prores 4444QuickTimeApple ProRes 4444Timeline resolutionWith alpha channel
youtubeMP4H.2641920x1080YouTube-optimized (high bitrate)
instagramMP4H.2641080x1080Square crop for IG feed
instagram reel or reelMP4H.2641080x19209:16 vertical
tiktokMP4H.2641080x19209:16 vertical
dnxhdMXFDNxHDTimeline resolutionBroadcast delivery

If the user provides a Resolve render preset name instead, use resolve_load_render_preset to load it directly.

Workflow

  1. Parse the delivery target from the user's argument
  2. Use resolve_set_render_format_and_codec to set format and codec
  3. Use resolve_set_render_settings to set resolution, frame rate, and any other settings (e.g., SelectAllFrames: true)
  4. If the user specified an output directory, set TargetDir. Otherwise use the project default.
  5. Use resolve_add_render_job to queue the job
  6. Use resolve_start_render to begin rendering
  7. Poll with resolve_get_render_status every few seconds until complete
  8. Report final status: success, output path, file size if available

Example Interactions

User: /deliver h265 4k → Set MP4/H.265 at 3840x2160, add job, start render, poll to completion.

User: /deliver youtube → Set MP4/H.264 at 1920x1080 with high bitrate, render.

User: /deliver prores hq to /Volumes/Exports/ → Set QuickTime/ProRes 422 HQ, TargetDir = /Volumes/Exports/, render.

User: /deliver "Custom Preset Name" → Load the named preset, add job, render.

Stats
Stars0
Forks0
Last CommitFeb 22, 2026