record
Start recording audio or MIDI in REAPER DAW to capture musical ideas and performances for music production.
Instructions
Start recording.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- scythe_mcp/server/main.py:92-98 (handler)MCP tool handler for 'record'. Registered via @mcp.tool() decorator. Starts recording by invoking ReaperBridge.record().@mcp.tool() def record(ctx: Context) -> str: """Start recording.""" bridge = get_bridge() if bridge.record(): return "Recording started" return "Error: OSC command failed"
- ReaperBridge helper method that sends the OSC '/record' command to REAPER to start recording.def record(self) -> bool: """Start recording.""" return self.send_osc("/record")