create_project
Start a new DaVinci Resolve project by providing a name. Initiates project creation to streamline video editing setup.
Instructions
Create a new project with the given name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name for the new project |
Implementation Reference
- src/davinci_mcp/tools/__init__.py:73-86 (registration)Tool registration in the get_all_tools() function, defining the tool's name, description, and input schema (requires a 'name' string).
types.Tool( name="create_project", description="Create a new project with the given name", inputSchema={ "type": "object", "properties": { "name": { "type": "string", "description": "The name for the new project", } }, "required": ["name"], }, ),