list_projects
Retrieve all projects in the current DaVinci Resolve database, enabling AI assistants to display available projects for selection and further processing.
Instructions
List all available projects in the current database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/davinci_mcp/tools/__init__.py:48-53 (registration)Registration of the 'list_projects' tool in the MCP tools registry, defining its name, description, and empty input schema.
# Project tools types.Tool( name="list_projects", description="List all available projects in the current database", inputSchema={"type": "object", "properties": {}, "required": []}, ),