open_project
Open a specific DaVinci Resolve project by entering its name, enabling direct project selection without manual browsing.
Instructions
Open a project by name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the project to open |
Implementation Reference
- The schema/definition of the open_project tool, defining it as an MCP Tool with name 'open_project', description, and input schema requiring a 'name' string parameter.
types.Tool( name="open_project", description="Open a project by name", inputSchema={ "type": "object", "properties": { "name": { "type": "string", "description": "The name of the project to open", } }, "required": ["name"], }, ),