get_project_info
Retrieve metadata from the currently open REAPER project to access project details and settings within the digital audio workstation.
Instructions
Return metadata about the currently open REAPER project.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/reaper_mcp/server.py:51-57 (handler)The tool handler for get_project_info, which wraps the call to the adapter.
@mcp.tool() def get_project_info() -> dict[str, Any]: """Return metadata about the currently open REAPER project.""" try: return _wrap(adapter.get_project_info()) except Exception as exc: return _err(exc) - The adapter method that delegates the call to the underlying BridgeClient.
def get_project_info(self) -> dict[str, Any]: return self._client.call("get_project_info")