switch_page
Navigate directly to any workspace in DaVinci Resolve, including Media, Cut, Edit, Fusion, Color, Fairlight, and Deliver pages, for efficient project workflow management.
Instructions
Switch to a specific page in DaVinci Resolve
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | Yes | The page to switch to |
Implementation Reference
- Schema registration: Defines the switch_page tool with name, description, and inputSchema requiring a 'page' string parameter with an enum of allowed page values (media, cut, edit, fusion, color, fairlight, deliver).
types.Tool( name="switch_page", description="Switch to a specific page in DaVinci Resolve", inputSchema={ "type": "object", "properties": { "page": { "type": "string", "description": "The page to switch to", "enum": [ "media", "cut", "edit", "fusion", "color", "fairlight", "deliver", ], } }, "required": ["page"], }, ),