Skip to main content
Glama

save_project

Save the current REAPER project to disk using the ReaMCP server. This tool preserves your audio workstation session by writing project data to storage.

Instructions

Save the current REAPER project to disk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The MCP tool handler for 'save_project', decorated with @mcp.tool(). It calls the adapter method and handles potential exceptions.
    @mcp.tool()
    def save_project() -> dict[str, Any]:
        """Save the current REAPER project to disk."""
        try:
            return _wrap(adapter.save_project())
        except Exception as exc:
            return _err(exc)
  • The adapter method that sends the 'save_project' call to the REAPER client.
    def save_project(self) -> dict[str, Any]:
        return self._client.call("save_project")

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