new_project
Create a new blank REAPER project for audio production and editing within the digital audio workstation.
Instructions
Create a new blank REAPER project (equivalent to File > New Project).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/reaper_mcp/server.py:844-849 (handler)The MCP tool handler function 'new_project' in 'server.py' which calls 'adapter.new_project()'.
def new_project() -> dict[str, Any]: """Create a new blank REAPER project (equivalent to File > New Project).""" try: return _wrap(adapter.new_project()) except Exception as exc: return _err(exc) - The adapter method 'new_project' in 'reaper_adapter.py' which forwards the request to the underlying BridgeClient.
def new_project(self) -> dict[str, Any]: return self._client.call("new_project")