start_playback
Begin playback of the current Ableton Live session to start music production or continue working on tracks.
Instructions
Start playing the Ableton session.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- MCP_Server/server.py:416-420 (handler)The MCP tool handler function 'start_playback' that triggers playback in the Ableton session via _run.
def start_playback(ctx: Context) -> str: """Start playing the Ableton session.""" try: _run("start_playback") return "Started playback" - The actual Ableton Remote Script method that interacts with the Ableton Live Object Model to start playback.
def _start_playback(self): """Start playing the session""" try: self._song.start_playing()