Skip to main content
Glama

open_project

Open REAPER project files (.rpp) using absolute paths to access and edit audio projects within the digital audio workstation.

Instructions

Open a REAPER project file (.rpp) by its absolute path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
file_pathYes

Implementation Reference

  • Low-level handler in the adapter that communicates with the REAPER bridge client.
    def open_project(self, file_path: str) -> dict[str, Any]:
        return self._client.call("open_project", file_path=file_path)
  • Tool registration and handler wrapper in the server file.
    def open_project(file_path: str) -> dict[str, Any]:
        """Open a REAPER project file (.rpp) by its absolute path."""
        try:
            return _wrap(adapter.open_project(file_path=file_path))
        except Exception as exc:
            return _err(exc)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/danielkinahan/ReaMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server