stop_playback
Stop playing the Ableton Live session to pause music production or editing work. This command halts playback through the MCP server interface.
Instructions
Stop playing the Ableton session.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- MCP_Server/server.py:425-430 (handler)The MCP tool handler for 'stop_playback' that calls the remote script command.
@mcp.tool() def stop_playback(ctx: Context) -> str: """Stop playing the Ableton session.""" try: _run("stop_playback") return "Stopped playback" - The actual implementation of the stop playback logic within the Ableton Remote Script.
def _stop_playback(self): """Stop playing the session""" try: self._song.stop_playing()