play
Start playback in REAPER DAW to control music composition and transport functions through AI-powered integration.
Instructions
Start playback.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- scythe_mcp/server/main.py:74-80 (handler)MCP tool handler for the 'play' tool. Calls the ReaperBridge.play() method to start playback in REAPER and returns success or error message.@mcp.tool() def play(ctx: Context) -> str: """Start playback.""" bridge = get_bridge() if bridge.play(): return "Playback started" return "Error: OSC command failed"
- ReaperBridge helper method that sends the OSC '/play' command to REAPER to start playback.def play(self) -> bool: """Start playback.""" return self.send_osc("/play")