livepilot 1.1.2 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.1 — 2026-03-17
4
+
5
+ ### Fixes
6
+ - Remove 3 tools that don't work in Live 12's ControlSurface API: `create_group_track`, `freeze_track`, `flatten_track`
7
+ - Fix `set_scene_name` — now allows empty string to clear scene name
8
+ - Fix `set_scene_tempo` — removed invalid "0 to clear" (Live 12 range is 20-999 BPM)
9
+ - All 96 tools live-tested against Ableton Live 12
10
+
11
+ ## 1.2.0 — 2026-03-17
12
+
13
+ ### New Tools (+5, total 96)
14
+ - **`set_group_fold`** — fold/unfold a group track to show/hide children
15
+ - **`set_track_input_monitoring`** — set input monitoring state (In/Auto/Off)
16
+ - **`set_clip_warp_mode`** — set warp mode for audio clips (Beats/Tones/Texture/Re-Pitch/Complex/Complex Pro)
17
+ - **`set_scene_color`** — set scene color (0-69)
18
+ - **`set_scene_tempo`** — set per-scene tempo that triggers on launch (20-999 BPM)
19
+
20
+ ### Removed Tools (-3)
21
+ - **`create_group_track`** — removed due to Live 12 API limitations
22
+ - **`freeze_track`** — removed due to Live 12 API limitations
23
+ - **`flatten_track`** — removed due to Live 12 API limitations
24
+
25
+ ### Enhancements
26
+ - `get_clip_info` now returns `is_midi_clip`, `is_audio_clip`, and audio warp fields (`warping`, `warp_mode`)
27
+ - `get_track_info` now returns `is_foldable`, `is_grouped`, `fold_state`, and `current_monitoring_state`
28
+
29
+ ### Fixes
30
+ - `set_scene_name` now allows empty string to clear scene name
31
+
3
32
  ## 1.1.2 — 2026-03-17
4
33
 
5
34
  ### Fixes
@@ -0,0 +1,87 @@
1
+ # Deep audit of the **LivePilot** repository and comparison with other AI‑enabled DAW assistants
2
+
3
+ ## Overview of LivePilot
4
+
5
+ **LivePilot** is an open‑source Model Context Protocol (MCP) server and companion plug‑in that connects large language models to *Ableton Live 12*. The project’s goal is to act as an **AI co‑pilot** for music production, sound design and mixing.
6
+
7
+ * **Purpose and capabilities:** The README explains that LivePilot exposes **91 tools across nine domains** (transport, tracks, clips, notes, devices, scenes, mixing, browser and arrangement)【665853537458845†L43-L70】. It allows a user to create tracks, program MIDI patterns, load instruments, adjust mixing parameters and even build full song structures via natural‑language requests【665853537458845†L15-L21】. The tool set covers nearly every aspect of a typical Ableton workflow: starting/stopping playback, setting tempo, creating MIDI or audio tracks, renaming and coloring them, creating/duplicating clips, reading and editing MIDI notes, loading devices and presets, changing levels/pans/sends, browsing Ableton’s library, editing arrangement clips and automation【665853537458845†L43-L70】. Each tool maps directly to an Ableton Live API call; the manual notes that there is **no abstraction layer** – commands are deterministic and reversible【608977690485721†L23-L27】.
8
+ * **Architecture:** A natural‑language prompt is processed by the AI client (e.g., Claude Code or Cursor) and sent over the MCP to the **LivePilot server** (Python with `fastmcp`)【665853537458845†L90-L97】. The server validates inputs and forwards them via a single‑client TCP connection to a **Remote Script** that runs inside Ableton’s Python environment【665853537458845†L90-L97】. The Remote Script executes commands on Ableton’s main thread (the same thread as the GUI), ensuring thread‑safe access to the Live Object Model【608977690485721†L29-L34】. Installation is streamlined via `npx -y github:dreamrec/LivePilot --install`, which copies the Remote Script to Ableton’s user library and sets up the MCP server【665853537458845†L22-L29】.
9
+ * **Plugin and producer agent:** LivePilot includes a Claude Code plug‑in that provides slash commands (`/session`, `/beat`, `/mix`, `/sounddesign`) and an **autonomous producer agent** that can build complete tracks from high‑level descriptions (“Make me a 126 BPM rominimal track…”)【665853537458845†L82-L89】. The core skill packaged with the plug‑in teaches the AI how to use LivePilot effectively – checking session state before issuing commands, verifying the results after writes and avoiding common mistakes【692402510651097†L69-L81】.
10
+ * **Documentation and user guidance:** The manual is comprehensive. It explains installation, connectivity, examples of natural‑language sessions, the details of each tool, production workflows, MIDI programming guidelines, sound design recipes, mixing tips and troubleshooting【608977690485721†L40-L47】. The getting‑started guide shows how to connect the server, then suggests an example conversation (“What’s in my session?” → “Set the tempo to 120 and create a MIDI track called DRUMS” → “Search for a drum kit and load it onto the DRUMS track” → “Create an 8‑beat clip and program a basic house kick pattern…”)【692402510651097†L39-L51】.
11
+ * **Compatibility:** LivePilot supports Ableton Live 12 (any edition) and requires Python 3.10 or newer and Node.js 18+【665853537458845†L96-L102】. Arrangement‑related tools work only in Live 12, while loading stock instruments and Max for Live devices requires the Suite edition【665853537458845†L96-L102】. CLI commands such as `--status`, `--doctor`, `--install` and `--version` simplify installation and diagnostics【665853537458845†L103-L106】.
12
+
13
+ ### Project structure and quality
14
+
15
+ Because the repository cannot be cloned from the restricted environment, we rely on the README and manual to infer its structure. The repository contains at least the following components:
16
+
17
+ 1. **Remote script (`remote_script/LivePilot`)** – a Python package that subclasses Ableton’s `ControlSurface` class and implements the command queue and handlers. It is installed into Ableton’s User Remote Scripts folder by the `--install` command【692402510651097†L18-L23】.
18
+ 2. **MCP server (`mcp_server`)** – a Python server built on the `fastmcp` framework. It validates input parameters (ranges and types) before passing them to the remote script【608977690485721†L29-L34】. Using a single TCP client avoids concurrency issues, because Ableton’s Live Object Model is not thread‑safe【665853537458845†L90-L97】.
19
+ 3. **CLI (JavaScript)** – the `npx` entry point uses Node.js to bootstrap the Python server and perform installation tasks. The minimal `requirements.txt` lists `fastmcp` as the only runtime dependency【45077298533394†L0-L2】.
20
+ 4. **Docs and tests:** The repo contains a `docs/manual` folder with Markdown documentation, and it mentions a `tests` directory (run by `pytest`)【665853537458845†L110-L111】.
21
+
22
+ While we cannot inspect individual functions, the combination of Python and Node indicates a hybrid architecture. Using `fastmcp` suggests asynchronous I/O and structured validation. The repository emphasises deterministic operations and explicit `undo` functionality【692402510651097†L63-L67】, which points to careful state management. Including a detailed manual and CLI indicates strong attention to developer experience.
23
+
24
+ ## Comparison with other AI‑enabled Ableton assistants
25
+
26
+ The AI‑DAW landscape has seen several community‑driven MCP servers that integrate language models with Ableton Live. Below is a comparison of LivePilot with four notable open‑source alternatives and one machine‑learning plugin collection (Magenta Studio). Star counts are ignored; only features matter. All projects implement the MCP for connecting an AI client to Ableton, but they differ in language, feature set and design philosophy.
27
+
28
+ ### Feature comparison
29
+
30
+ The table summarises the core capabilities (✓ = present, – = absent or not mentioned). Note: only keywords/phrases are used in the cells; long prose is kept in the explanation below.
31
+
32
+ | Tool/Project | Track & Session management | MIDI/Clip editing | Device/Effect control | Arrangement & automation | Mixing & routing | Browser search | Voice/audio generation | State rollback/Undo | Low‑latency/UDP | Autonomous agent |
33
+ |---|---|---|---|---|---|---|---|---|---|---|
34
+ | **LivePilot (dreamrec)** | create/delete/duplicate tracks, rename, color, mute, solo, arm【665853537458845†L45-L61】 | add/get/modify/duplicate/transpose/quantize notes【665853537458845†L62-L66】 | load instruments/effects, tweak parameters, rack chains, get presets【665853537458845†L66-L69】 | arrangement clip creation & full MIDI note CRUD, cue points, recording, timeline navigation【665853537458845†L74-L81】 | set volume, pan, sends; routing & return tracks; master control【665853537458845†L72-L74】 | search Ableton library & load presets【665853537458845†L72-L75】 | – (not in current version) | deterministic operations with undo/redo commands【692402510651097†L63-L67】 | – | built‑in producer agent via plugin【665853537458845†L82-L89】 |
35
+ | **Ableton Copilot MCP (xiaolaa2)** | create/delete/duplicate/rename MIDI, audio & return tracks; set tempo, time signature and scale【477631886601640†L155-L160】 | add/remove/replace/duplicate notes, filter by pitch, transpose, adjust clip properties【477631886601640†L161-L166】 | browse library, load specific audio effects/instruments/VSTs, modify parameters, record audio into clips【477631886601640†L167-L171】 | – (no dedicated arrangement API mentioned) | – | – | – | robust state management with snapshot & rollback support【477631886601640†L173-L177】 | – | – |
36
+ | **AbletonMCP (ahujasid)** | create/modify MIDI & audio tracks, load and configure remote script【260789399880945†L10-L16】 | create & edit MIDI clips; add notes【260789399880945†L14-L16】【260789399880945†L61-L63】 | select/load instruments & effects from Ableton’s browser【260789399880945†L13-L16】【260789399880945†L61-L63】 | – | basic playback/transport control【260789399880945†L15-L16】 | – | – | – (standard `undo` only) | – | – |
37
+ | **Ableton Live MCP Server (Simon‑Kansara)** | generic track & session control via OSC【308870449054950†L16-L19】 | – | – | – | – | – | – | – | uses UDP/OSC for communication (requires separate daemon)【308870449054950†L30-L34】 | – |
38
+ | **Ableton MCP Extended (uisato)** | comprehensive session & track management including group/folding states【795384148544515†L29-L35】 | create/rename clips; add/delete/transpose/quantize notes; batch edits【795384148544515†L35-L37】 | load instruments/effects; set & batch‑set parameters【795384148544515†L38-L41】 | automation/envelope editing; high‑performance mode using UDP for real‑time control【795384148544515†L41-L54】【795384148544515†L82-L87】 | volume, panning, mute, solo, sends【795384148544515†L29-L35】 | browse Ableton library and import audio files【795384148544515†L44-L46】 | voice/text‑to‑speech integration via ElevenLabs; custom voice & SFX【795384148544515†L47-L50】 | – (standard `undo` not emphasised) | ultra‑low latency via UDP server【795384148544515†L82-L87】 | – |
39
+ | **Magenta Studio (Google)** | – | generates melodies/drums, extends or transforms patterns using ML models【262161962734483†L63-L84】 | – | – | – | – | – | – | – | – |
40
+
41
+ ### Discussion
42
+
43
+ #### Breadth of control
44
+
45
+ LivePilot stands out for its broad coverage of Ableton’s API. It not only performs basic track and session operations but also supports **arrangement view editing** (creating arrangement clips, moving between cue points, starting/stopping recording, editing automation)【665853537458845†L74-L81】. Most competitors focus on session view; for example, Ableton Copilot MCP’s documentation highlights track/clip manipulation and device control but does not mention arrangement or automation【477631886601640†L155-L171】. AbletonMCP Extended adds some automation editing and envelope functionality【795384148544515†L41-L46】 but still doesn’t provide the same comprehensive list of arrangement tools.
46
+
47
+ #### Mixing and browser integration
48
+
49
+ LivePilot provides dedicated mixing tools (volume, pan, sends, routing, return tracks and master volume)【665853537458845†L72-L74】 and separate browser tools to search the entire Ableton library and load presets【665853537458845†L72-L75】. The other projects have limited mixing commands; AbletonMCP Extended includes volume/panning/mute/solo and send control【795384148544515†L29-L35】, but others do not emphasise mixing. Browser search appears in LivePilot and Extended; it is absent from Copilot MCP.
50
+
51
+ #### Safety and robustness
52
+
53
+ LivePilot emphasises deterministic operations and encourages the AI to verify the session state after every write. The `undo` tool is exposed, making all destructive operations reversible【692402510651097†L63-L67】. Ableton Copilot MCP goes further with **state rollback**; it snapshots the project state and can undo groups of operations, which is a robust safety net for complex tasks【477631886601640†L173-L177】. Competitors built on Python sockets generally rely on Ableton’s own undo (a single step), so LivePilot’s explicit undo tool is a strength but could be improved by adopting a snapshot approach.
54
+
55
+ #### Advanced features
56
+
57
+ * **Autonomous agent:** LivePilot’s Claude plug‑in includes a **producer agent** that builds complete tracks from high‑level descriptions【665853537458845†L82-L89】. None of the other open‑source projects advertise an autonomous composition agent, although some AI‑first DAW assistants outside the MCP ecosystem (e.g., commercial “Studio Co‑Pilot” or online generative services) may offer similar features.
58
+ * **Voice and audio generation:** Ableton MCP Extended uniquely integrates ElevenLabs for voice/speech generation and allows direct import of generated audio into Ableton sessions【795384148544515†L47-L50】. LivePilot lacks this type of generative audio; adding a similar feature could broaden its creative scope.
59
+ * **Low‑latency control:** The Extended project includes a UDP server for ultra‑low‑latency parameter control【795384148544515†L82-L87】. LivePilot uses a single TCP connection for thread safety【665853537458845†L90-L97】; while stable, it may introduce latency for real‑time performance. Offering a high‑performance mode or MIDI mapping could appeal to live performers.
60
+ * **State management:** Ableton Copilot MCP’s snapshot‑based rollback system is a notable innovation【477631886601640†L173-L177】. LivePilot currently supports standard undo/redo but not multi‑step rollback; implementing such a feature would increase safety.
61
+ * **Extensibility:** Both LivePilot and Ableton MCP Extended provide frameworks for creating custom tools. LivePilot’s skill file teaches the AI how to interact correctly【692402510651097†L69-L81】, and the Extended project demonstrates building custom controllers (XY mouse controller)【795384148544515†L82-L87】.
62
+
63
+ #### Installation and user experience
64
+
65
+ LivePilot provides a simple `npx` installer and CLI commands to install, check status and run diagnostics【665853537458845†L22-L27】【665853537458845†L103-L106】. Ableton Copilot MCP similarly offers one‑line installation via `npx @xiaolaa2/ableton-copilot-mcp --install-scripts`【477631886601640†L213-L216】. AbletonMCP and Extended require cloning or using `uv` and copying remote scripts manually【260789399880945†L21-L34】【795384148544515†L56-L66】, which is less streamlined. LivePilot’s documentation is thorough and includes a manual covering workflows, whereas competitors often rely on README‑level documentation or blog posts.
66
+
67
+ ### Strengths and areas for improvement
68
+
69
+ #### Strengths of LivePilot
70
+
71
+ 1. **Comprehensive toolset:** With 91 tools covering transport, track management, clip operations, note editing, devices, scenes, mixing, browser search and arrangement, LivePilot offers the broadest feature coverage among existing MCP servers【665853537458845†L43-L70】.
72
+ 2. **Natural‑language workflows:** The manual demonstrates how to use conversation to build beats, search for instruments, program MIDI patterns and mix tracks【692402510651097†L39-L51】. This conversational approach, combined with the producer agent, makes LivePilot accessible to users with minimal technical knowledge.
73
+ 3. **Deterministic operations and safety:** By mapping tools directly to Ableton’s API and exposing undo/redo, LivePilot aims to provide predictable outcomes and a clear safety net【608977690485721†L23-L27】【692402510651097†L63-L67】.
74
+ 4. **Developer experience:** The `npx` installer, CLI commands (`--status`, `--doctor`), cross‑platform support (macOS and Windows) and extensive manual contribute to a polished user experience【665853537458845†L103-L106】.
75
+ 5. **Plugin & agent integration:** The Claude plug‑in adds slash commands and an autonomous producer agent that can compose full tracks from high‑level prompts【665853537458845†L82-L89】. This is unique among open‑source MCP servers.
76
+
77
+ #### Areas for improvement
78
+
79
+ 1. **State rollback and history:** Competing projects like Ableton Copilot MCP implement snapshot‑based rollback【477631886601640†L173-L177】. Incorporating multi‑step undo or versioned snapshots in LivePilot would improve safety during complex editing.
80
+ 2. **Voice and audio generation:** Ableton MCP Extended integrates ElevenLabs for text‑to‑speech and can import generated vocals or sound effects【795384148544515†L47-L50】. Adding optional integration with generative audio tools (e.g., ElevenLabs, OpenAI TTS) could expand LivePilot’s creative capabilities.
81
+ 3. **Low‑latency control:** The Extended project’s UDP server provides ultra‑low‑latency parameter control【795384148544515†L82-L87】. LivePilot could explore a similar performance mode or integration with hardware controllers to better serve live performers.
82
+ 4. **Simplify cross‑language architecture:** LivePilot uses Node.js to bootstrap a Python server; although this is hidden from the user, consolidating components or providing a purely Python installation could reduce complexity and dependency on Node.
83
+ 5. **Community engagement:** Many competing projects have active communities and Discord servers (e.g., AbletonMCP invites feedback on Discord【260789399880945†L8-L9】). Building a community around LivePilot would encourage contributions, gather feedback and accelerate development.
84
+
85
+ ## Conclusion
86
+
87
+ LivePilot is an ambitious and well‑documented project that aims to be a **comprehensive AI co‑pilot** for Ableton Live 12. Its strength lies in its broad tool coverage, polished installation experience, deterministic operations and the inclusion of a plug‑in with an autonomous producer agent. Compared with other MCP servers, LivePilot covers more domains (especially arrangement and mixing) and provides a more polished user experience. Competing projects offer innovations such as state rollback, voice/audio generation and low‑latency control. Incorporating similar features, encouraging community engagement and potentially simplifying the architecture would enhance LivePilot’s position as the most intelligent and versatile AI assistant for Ableton Live.
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  [![CI](https://github.com/dreamrec/LivePilot/actions/workflows/ci.yml/badge.svg)](https://github.com/dreamrec/LivePilot/actions/workflows/ci.yml)
12
12
  [![GitHub stars](https://img.shields.io/github/stars/dreamrec/LivePilot)](https://github.com/dreamrec/LivePilot/stargazers)
13
13
 
14
- **AI copilot for Ableton Live 12** — 91 MCP tools for music production, sound design, and mixing.
14
+ **AI copilot for Ableton Live 12** — 96 MCP tools for music production, sound design, and mixing.
15
15
 
16
16
  Control your entire Ableton session through natural language. Create tracks, program MIDI, load instruments, tweak parameters, arrange songs, and mix — all without leaving the keyboard.
17
17
 
@@ -156,16 +156,16 @@ npx -y github:dreamrec/LivePilot --status
156
156
 
157
157
  ---
158
158
 
159
- ## 91 Tools Across 9 Domains
159
+ ## 96 Tools Across 9 Domains
160
160
 
161
161
  | Domain | Tools | What you can do |
162
162
  |--------|:-----:|-----------------|
163
163
  | **Transport** | 12 | Play/stop, tempo, time signature, loop, undo/redo, metronome, diagnostics |
164
- | **Tracks** | 12 | Create MIDI/audio/return tracks, name, color, mute, solo, arm |
165
- | **Clips** | 10 | Create, delete, duplicate, fire, stop, loop settings, launch mode |
164
+ | **Tracks** | 14 | Create MIDI/audio/return tracks, name, color, mute, solo, arm, group fold, input monitoring |
165
+ | **Clips** | 11 | Create, delete, duplicate, fire, stop, loop settings, launch mode, warp mode |
166
166
  | **Notes** | 8 | Add/get/remove/modify MIDI notes, transpose, quantize, duplicate |
167
167
  | **Devices** | 12 | Load instruments & effects, tweak parameters, rack chains, presets |
168
- | **Scenes** | 6 | Create, delete, duplicate, fire, rename |
168
+ | **Scenes** | 8 | Create, delete, duplicate, fire, rename, color, per-scene tempo |
169
169
  | **Mixing** | 8 | Volume, pan, sends, routing, return tracks, master |
170
170
  | **Browser** | 4 | Search Ableton's library, browse categories, load presets |
171
171
  | **Arrangement** | 19 | Create clips, full MIDI note CRUD, cue points, recording, automation |
@@ -176,11 +176,11 @@ npx -y github:dreamrec/LivePilot --status
176
176
  ### Transport (12)
177
177
  `get_session_info` · `set_tempo` · `set_time_signature` · `start_playback` · `stop_playback` · `continue_playback` · `toggle_metronome` · `set_session_loop` · `undo` · `redo` · `get_recent_actions` · `get_session_diagnostics`
178
178
 
179
- ### Tracks (12)
180
- `get_track_info` · `create_midi_track` · `create_audio_track` · `create_return_track` · `delete_track` · `duplicate_track` · `set_track_name` · `set_track_color` · `set_track_mute` · `set_track_solo` · `set_track_arm` · `stop_track_clips`
179
+ ### Tracks (14)
180
+ `get_track_info` · `create_midi_track` · `create_audio_track` · `create_return_track` · `delete_track` · `duplicate_track` · `set_track_name` · `set_track_color` · `set_track_mute` · `set_track_solo` · `set_track_arm` · `stop_track_clips` · `set_group_fold` · `set_track_input_monitoring`
181
181
 
182
- ### Clips (10)
183
- `get_clip_info` · `create_clip` · `delete_clip` · `duplicate_clip` · `fire_clip` · `stop_clip` · `set_clip_name` · `set_clip_color` · `set_clip_loop` · `set_clip_launch`
182
+ ### Clips (11)
183
+ `get_clip_info` · `create_clip` · `delete_clip` · `duplicate_clip` · `fire_clip` · `stop_clip` · `set_clip_name` · `set_clip_color` · `set_clip_loop` · `set_clip_launch` · `set_clip_warp_mode`
184
184
 
185
185
  ### Notes (8)
186
186
  `add_notes` · `get_notes` · `remove_notes` · `remove_notes_by_id` · `modify_notes` · `duplicate_notes` · `transpose_notes` · `quantize_clip`
@@ -188,8 +188,8 @@ npx -y github:dreamrec/LivePilot --status
188
188
  ### Devices (12)
189
189
  `get_device_info` · `get_device_parameters` · `set_device_parameter` · `batch_set_parameters` · `toggle_device` · `delete_device` · `load_device_by_uri` · `find_and_load_device` · `get_rack_chains` · `set_simpler_playback_mode` · `set_chain_volume` · `get_device_presets`
190
190
 
191
- ### Scenes (6)
192
- `get_scenes_info` · `create_scene` · `delete_scene` · `duplicate_scene` · `fire_scene` · `set_scene_name`
191
+ ### Scenes (8)
192
+ `get_scenes_info` · `create_scene` · `delete_scene` · `duplicate_scene` · `fire_scene` · `set_scene_name` · `set_scene_color` · `set_scene_tempo`
193
193
 
194
194
  ### Mixing (8)
195
195
  `set_track_volume` · `set_track_pan` · `set_track_send` · `get_return_tracks` · `get_master_track` · `set_master_volume` · `get_track_routing` · `set_track_routing`
@@ -1,6 +1,6 @@
1
- """Clip MCP tools — info, create, delete, duplicate, fire, stop, properties.
1
+ """Clip MCP tools — info, create, delete, duplicate, fire, stop, properties, warp.
2
2
 
3
- 10 tools matching the Remote Script clips domain.
3
+ 11 tools matching the Remote Script clips domain.
4
4
  """
5
5
 
6
6
  from fastmcp import Context
@@ -185,3 +185,29 @@ def set_clip_launch(
185
185
  if quantization is not None:
186
186
  params["quantization"] = quantization
187
187
  return _get_ableton(ctx).send_command("set_clip_launch", params)
188
+
189
+
190
+ _VALID_WARP_MODES = {0, 1, 2, 3, 4, 6}
191
+
192
+
193
+ @mcp.tool()
194
+ def set_clip_warp_mode(
195
+ ctx: Context,
196
+ track_index: int,
197
+ clip_index: int,
198
+ mode: int,
199
+ warping: bool | None = None,
200
+ ) -> dict:
201
+ """Set warp mode for an audio clip (0=Beats, 1=Tones, 2=Texture, 3=Re-Pitch, 4=Complex, 6=Complex Pro)."""
202
+ _validate_track_index(track_index)
203
+ _validate_clip_index(clip_index)
204
+ if mode not in _VALID_WARP_MODES:
205
+ raise ValueError("Warp mode must be one of: 0=Beats, 1=Tones, 2=Texture, 3=Re-Pitch, 4=Complex, 6=Complex Pro")
206
+ params = {
207
+ "track_index": track_index,
208
+ "clip_index": clip_index,
209
+ "mode": mode,
210
+ }
211
+ if warping is not None:
212
+ params["warping"] = warping
213
+ return _get_ableton(ctx).send_command("set_clip_warp_mode", params)
@@ -1,6 +1,6 @@
1
- """Scene MCP tools — list, create, delete, duplicate, fire, rename.
1
+ """Scene MCP tools — list, create, delete, duplicate, fire, rename, color, tempo.
2
2
 
3
- 6 tools matching the Remote Script scenes domain.
3
+ 8 tools matching the Remote Script scenes domain.
4
4
  """
5
5
 
6
6
  from fastmcp import Context
@@ -53,11 +53,37 @@ def fire_scene(ctx: Context, scene_index: int) -> dict:
53
53
 
54
54
  @mcp.tool()
55
55
  def set_scene_name(ctx: Context, scene_index: int, name: str) -> dict:
56
- """Rename a scene."""
56
+ """Rename a scene. Pass empty string to clear the name."""
57
57
  _validate_scene_index(scene_index)
58
- if not name.strip():
59
- raise ValueError("Scene name cannot be empty")
60
58
  return _get_ableton(ctx).send_command("set_scene_name", {
61
59
  "scene_index": scene_index,
62
60
  "name": name,
63
61
  })
62
+
63
+
64
+ def _validate_color_index(color_index: int):
65
+ if not 0 <= color_index <= 69:
66
+ raise ValueError("color_index must be between 0 and 69")
67
+
68
+
69
+ @mcp.tool()
70
+ def set_scene_color(ctx: Context, scene_index: int, color_index: int) -> dict:
71
+ """Set scene color (0-69, Ableton's color palette)."""
72
+ _validate_scene_index(scene_index)
73
+ _validate_color_index(color_index)
74
+ return _get_ableton(ctx).send_command("set_scene_color", {
75
+ "scene_index": scene_index,
76
+ "color_index": color_index,
77
+ })
78
+
79
+
80
+ @mcp.tool()
81
+ def set_scene_tempo(ctx: Context, scene_index: int, tempo: float) -> dict:
82
+ """Set scene tempo in BPM (20-999). Fires when the scene launches."""
83
+ _validate_scene_index(scene_index)
84
+ if tempo < 20 or tempo > 999:
85
+ raise ValueError("Tempo must be between 20.0 and 999.0 BPM")
86
+ return _get_ableton(ctx).send_command("set_scene_tempo", {
87
+ "scene_index": scene_index,
88
+ "tempo": tempo,
89
+ })
@@ -1,6 +1,6 @@
1
- """Track MCP tools — create, delete, rename, mute, solo, arm.
1
+ """Track MCP tools — create, delete, rename, mute, solo, arm, group fold, monitor.
2
2
 
3
- 12 tools matching the Remote Script tracks domain.
3
+ 14 tools matching the Remote Script tracks domain.
4
4
  """
5
5
 
6
6
  from fastmcp import Context
@@ -146,3 +146,25 @@ def stop_track_clips(ctx: Context, track_index: int) -> dict:
146
146
  """Stop all playing clips on a track."""
147
147
  _validate_track_index(track_index)
148
148
  return _get_ableton(ctx).send_command("stop_track_clips", {"track_index": track_index})
149
+
150
+
151
+ @mcp.tool()
152
+ def set_group_fold(ctx: Context, track_index: int, folded: bool) -> dict:
153
+ """Fold or unfold a group track to show/hide its children."""
154
+ _validate_track_index(track_index)
155
+ return _get_ableton(ctx).send_command("set_group_fold", {
156
+ "track_index": track_index,
157
+ "folded": folded,
158
+ })
159
+
160
+
161
+ @mcp.tool()
162
+ def set_track_input_monitoring(ctx: Context, track_index: int, state: int) -> dict:
163
+ """Set input monitoring (0=In, 1=Auto, 2=Off). Only for regular tracks, not return tracks."""
164
+ _validate_track_index(track_index)
165
+ if state not in (0, 1, 2):
166
+ raise ValueError("Monitoring state must be 0=In, 1=Auto, or 2=Off")
167
+ return _get_ableton(ctx).send_command("set_track_input_monitoring", {
168
+ "track_index": track_index,
169
+ "state": state,
170
+ })
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.1.2",
3
+ "version": "1.2.1",
4
4
  "mcpName": "io.github.dreamrec/livepilot",
5
- "description": "AI copilot for Ableton Live 12 — 91 MCP tools for music production, sound design, and mixing",
5
+ "description": "AI copilot for Ableton Live 12 — 96 MCP tools for music production, sound design, and mixing",
6
6
  "author": "Pilot Studio",
7
7
  "license": "MIT",
8
8
  "type": "commonjs",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.1.2",
4
- "description": "AI copilot for Ableton Live 12 — 91 MCP tools for music production, sound design, and mixing",
3
+ "version": "1.2.1",
4
+ "description": "AI copilot for Ableton Live 12 — 96 MCP tools for music production, sound design, and mixing",
5
5
  "author": "Pilot Studio",
6
6
  "skills": [
7
7
  "skills/livepilot-core"
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: livepilot-core
3
- description: Core discipline for controlling Ableton Live 12 through LivePilot's 91 MCP tools. Use whenever working with Ableton Live through MCP tools.
3
+ description: Core discipline for controlling Ableton Live 12 through LivePilot's 96 MCP tools. Use whenever working with Ableton Live through MCP tools.
4
4
  ---
5
5
 
6
6
  # LivePilot Core — Ableton Live 12 AI Copilot
7
7
 
8
- LivePilot gives you 91 MCP tools to control Ableton Live 12 in real-time: transport, tracks, clips, MIDI notes, devices, scenes, mixing, browser, and arrangement.
8
+ LivePilot gives you 96 MCP tools to control Ableton Live 12 in real-time: transport, tracks, clips, MIDI notes, devices, scenes, mixing, browser, and arrangement.
9
9
 
10
10
  ## Golden Rules
11
11
 
@@ -16,7 +16,7 @@ LivePilot gives you 91 MCP tools to control Ableton Live 12 in real-time: transp
16
16
  5. **Track indices are 0-based** — track 0 is the first track, scene 0 is the first scene
17
17
  6. **Color indices 0-69** — Ableton's fixed palette. Don't guess — use the index
18
18
  7. **Volume is 0.0-1.0, pan is -1.0 to 1.0** — these are normalized, not dB
19
- 8. **Tempo range 20-999 BPM** — validated before sending to Ableton
19
+ 8. **Tempo range 20-969 BPM** — validated before sending to Ableton
20
20
  9. **Always name your tracks and clips** — organization is part of the creative process
21
21
 
22
22
  ## Track Health Checks — MANDATORY
@@ -57,16 +57,16 @@ LivePilot gives you 91 MCP tools to control Ableton Live 12 in real-time: transp
57
57
  - MIDI track with no instrument loaded
58
58
  - Notes programmed but clip not fired
59
59
 
60
- ## Tool Domains (91 total)
60
+ ## Tool Domains (96 total)
61
61
 
62
62
  ### Transport (12)
63
63
  `get_session_info` · `set_tempo` · `set_time_signature` · `start_playback` · `stop_playback` · `continue_playback` · `toggle_metronome` · `set_session_loop` · `undo` · `redo` · `get_recent_actions` · `get_session_diagnostics`
64
64
 
65
- ### Tracks (12)
66
- `get_track_info` · `create_midi_track` · `create_audio_track` · `create_return_track` · `delete_track` · `duplicate_track` · `set_track_name` · `set_track_color` · `set_track_mute` · `set_track_solo` · `set_track_arm` · `stop_track_clips`
65
+ ### Tracks (14)
66
+ `get_track_info` · `create_midi_track` · `create_audio_track` · `create_return_track` · `delete_track` · `duplicate_track` · `set_track_name` · `set_track_color` · `set_track_mute` · `set_track_solo` · `set_track_arm` · `stop_track_clips` · `set_group_fold` · `set_track_input_monitoring`
67
67
 
68
- ### Clips (10)
69
- `get_clip_info` · `create_clip` · `delete_clip` · `duplicate_clip` · `fire_clip` · `stop_clip` · `set_clip_name` · `set_clip_color` · `set_clip_loop` · `set_clip_launch`
68
+ ### Clips (11)
69
+ `get_clip_info` · `create_clip` · `delete_clip` · `duplicate_clip` · `fire_clip` · `stop_clip` · `set_clip_name` · `set_clip_color` · `set_clip_loop` · `set_clip_launch` · `set_clip_warp_mode`
70
70
 
71
71
  ### Notes (8)
72
72
  `add_notes` · `get_notes` · `remove_notes` · `remove_notes_by_id` · `modify_notes` · `duplicate_notes` · `transpose_notes` · `quantize_clip`
@@ -74,8 +74,8 @@ LivePilot gives you 91 MCP tools to control Ableton Live 12 in real-time: transp
74
74
  ### Devices (12)
75
75
  `get_device_info` · `get_device_parameters` · `set_device_parameter` · `batch_set_parameters` · `toggle_device` · `delete_device` · `load_device_by_uri` · `find_and_load_device` · `set_simpler_playback_mode` · `get_rack_chains` · `set_chain_volume` · `get_device_presets`
76
76
 
77
- ### Scenes (6)
78
- `get_scenes_info` · `create_scene` · `delete_scene` · `duplicate_scene` · `fire_scene` · `set_scene_name`
77
+ ### Scenes (8)
78
+ `get_scenes_info` · `create_scene` · `delete_scene` · `duplicate_scene` · `fire_scene` · `set_scene_name` · `set_scene_color` · `set_scene_tempo`
79
79
 
80
80
  ### Mixing (8)
81
81
  `set_track_volume` · `set_track_pan` · `set_track_send` · `get_return_tracks` · `get_master_track` · `set_master_volume` · `get_track_routing` · `set_track_routing`
@@ -152,7 +152,7 @@ Deep production knowledge lives in `references/`. Consult these when making crea
152
152
 
153
153
  | File | What's inside | When to consult |
154
154
  |------|--------------|-----------------|
155
- | `references/overview.md` | All 91 tools mapped with params, units, ranges | Quick lookup for any tool |
155
+ | `references/overview.md` | All 96 tools mapped with params, units, ranges | Quick lookup for any tool |
156
156
  | `references/midi-recipes.md` | Drum patterns by genre, chord voicings, scales, hi-hat techniques, humanization, polymetrics | Programming MIDI notes, building beats |
157
157
  | `references/sound-design.md` | Stock instruments/effects, parameter recipes for bass/pad/lead/pluck, device chain patterns | Loading and configuring devices |
158
158
  | `references/mixing-patterns.md` | Gain staging, parallel compression, sidechain, EQ by instrument, bus processing, stereo width | Setting volumes, panning, adding effects |
@@ -1,6 +1,6 @@
1
1
  # LivePilot Architecture & Tool Reference
2
2
 
3
- LivePilot is an MCP server that controls Ableton Live 12 in real-time through 91 tools across 9 domains. This document maps every tool to what it actually does in Ableton, so you know exactly which tool to reach for.
3
+ LivePilot is an MCP server that controls Ableton Live 12 in real-time through 96 tools across 9 domains. This document maps every tool to what it actually does in Ableton, so you know exactly which tool to reach for.
4
4
 
5
5
  ## Architecture
6
6
 
@@ -14,7 +14,7 @@ Claude Code ──MCP──► FastMCP Server ──TCP/9878──► Remote
14
14
  - **Protocol**: JSON over TCP, newline-delimited. Every command gets a response.
15
15
  - **Thread safety**: All Live Object Model (LOM) access happens on Ableton's main thread
16
16
 
17
- ## The 91 Tools — What Each One Does
17
+ ## The 96 Tools — What Each One Does
18
18
 
19
19
  ### Transport (12) — Playback, tempo, global state, diagnostics
20
20
 
@@ -33,11 +33,11 @@ Claude Code ──MCP──► FastMCP Server ──TCP/9878──► Remote
33
33
  | `get_recent_actions` | Returns log of recent commands sent to Ableton (newest first) | `limit` (1-50, default 20) |
34
34
  | `get_session_diagnostics` | Analyzes session for issues: armed tracks, solo leftovers, unnamed tracks, empty clips | — |
35
35
 
36
- ### Tracks (12) — Create, delete, configure tracks
36
+ ### Tracks (14) — Create, delete, configure, group tracks
37
37
 
38
38
  | Tool | What it does | Key params |
39
39
  |------|-------------|------------|
40
- | `get_track_info` | Returns clips, devices, mixer state, routing for one track | `track_index` (0-based) |
40
+ | `get_track_info` | Returns clips, devices, mixer state, group/fold info for one track | `track_index` (0-based) |
41
41
  | `create_midi_track` | Creates a new MIDI track | `index` (-1=end), `name`, `color` (0-69) |
42
42
  | `create_audio_track` | Creates a new audio track | `index` (-1=end), `name`, `color` (0-69) |
43
43
  | `create_return_track` | Creates a new return track | — |
@@ -49,12 +49,14 @@ Claude Code ──MCP──► FastMCP Server ──TCP/9878──► Remote
49
49
  | `set_track_solo` | Solos/unsolos | `track_index`, `soloed` (bool) |
50
50
  | `set_track_arm` | Arms/disarms for recording | `track_index`, `armed` (bool) |
51
51
  | `stop_track_clips` | Stops all playing clips on track | `track_index` |
52
+ | `set_group_fold` | Folds/unfolds a group track | `track_index`, `folded` (bool) |
53
+ | `set_track_input_monitoring` | Sets input monitoring state | `track_index`, `state` (0=In, 1=Auto, 2=Off) |
52
54
 
53
- ### Clips (10) — Clip lifecycle and properties
55
+ ### Clips (11) — Clip lifecycle, properties, warp
54
56
 
55
57
  | Tool | What it does | Key params |
56
58
  |------|-------------|------------|
57
- | `get_clip_info` | Returns clip name, length, loop settings, playing state, notes count | `track_index`, `clip_index` |
59
+ | `get_clip_info` | Returns clip name, length, loop settings, playing state, is_midi/is_audio, warp info | `track_index`, `clip_index` |
58
60
  | `create_clip` | Creates empty MIDI clip | `track_index`, `clip_index`, `length` (beats) |
59
61
  | `delete_clip` | Removes a clip from its slot | `track_index`, `clip_index` |
60
62
  | `duplicate_clip` | Copies clip to next slot | `track_index`, `clip_index` |
@@ -64,6 +66,7 @@ Claude Code ──MCP──► FastMCP Server ──TCP/9878──► Remote
64
66
  | `set_clip_color` | Sets clip color | `track_index`, `clip_index`, `color_index` (0-69) |
65
67
  | `set_clip_loop` | Configures loop region | `track_index`, `clip_index`, `loop_start`, `loop_end`, `looping` |
66
68
  | `set_clip_launch` | Sets launch mode and quantization | `track_index`, `clip_index`, `launch_mode`, `quantization` |
69
+ | `set_clip_warp_mode` | Sets warp mode for audio clips | `track_index`, `clip_index`, `mode` (0=Beats,1=Tones,2=Texture,3=Re-Pitch,4=Complex,6=Complex Pro) |
67
70
 
68
71
  ### Notes (8) — MIDI note manipulation (Live 12 API)
69
72
 
@@ -106,16 +109,18 @@ Claude Code ──MCP──► FastMCP Server ──TCP/9878──► Remote
106
109
  | `set_chain_volume` | Sets volume of a rack chain | `track_index`, `device_index`, `chain_index`, `volume` |
107
110
  | `get_device_presets` | Lists presets for a device (audio effects, instruments, MIDI effects) | `device_name` |
108
111
 
109
- ### Scenes (6) — Scene management
112
+ ### Scenes (8) — Scene management
110
113
 
111
114
  | Tool | What it does | Key params |
112
115
  |------|-------------|------------|
113
- | `get_scenes_info` | Lists all scenes with names and clip status | — |
116
+ | `get_scenes_info` | Lists all scenes with names, tempo, and color | — |
114
117
  | `create_scene` | Creates a new scene | `index` (-1=end) |
115
118
  | `delete_scene` | Deletes a scene | `scene_index` |
116
119
  | `duplicate_scene` | Duplicates a scene | `scene_index` |
117
120
  | `fire_scene` | Launches all clips in a scene | `scene_index` |
118
121
  | `set_scene_name` | Renames a scene | `scene_index`, `name` |
122
+ | `set_scene_color` | Sets scene color | `scene_index`, `color_index` (0-69) |
123
+ | `set_scene_tempo` | Sets tempo that triggers when scene fires | `scene_index`, `tempo` (20-999 BPM) |
119
124
 
120
125
  ### Mixing (8) — Levels, panning, routing
121
126
 
@@ -1,5 +1,5 @@
1
1
  """
2
- LivePilot - Clip domain handlers (10 commands).
2
+ LivePilot - Clip domain handlers (11 commands).
3
3
  """
4
4
 
5
5
  from .router import register
@@ -13,7 +13,7 @@ def get_clip_info(song, params):
13
13
  clip_index = int(params["clip_index"])
14
14
  clip = get_clip(song, track_index, clip_index)
15
15
 
16
- return {
16
+ result = {
17
17
  "track_index": track_index,
18
18
  "clip_index": clip_index,
19
19
  "name": clip.name,
@@ -21,6 +21,8 @@ def get_clip_info(song, params):
21
21
  "length": clip.length,
22
22
  "is_playing": clip.is_playing,
23
23
  "is_recording": clip.is_recording,
24
+ "is_midi_clip": clip.is_midi_clip,
25
+ "is_audio_clip": clip.is_audio_clip,
24
26
  "looping": clip.looping,
25
27
  "loop_start": clip.loop_start,
26
28
  "loop_end": clip.loop_end,
@@ -30,6 +32,13 @@ def get_clip_info(song, params):
30
32
  "launch_quantization": clip.launch_quantization,
31
33
  }
32
34
 
35
+ # Audio-clip-specific fields
36
+ if clip.is_audio_clip:
37
+ result["warping"] = clip.warping
38
+ result["warp_mode"] = clip.warp_mode
39
+
40
+ return result
41
+
33
42
 
34
43
  @register("create_clip")
35
44
  def create_clip(song, params):
@@ -170,3 +179,33 @@ def set_clip_launch(song, params):
170
179
  "launch_mode": clip.launch_mode,
171
180
  "launch_quantization": clip.launch_quantization,
172
181
  }
182
+
183
+
184
+ @register("set_clip_warp_mode")
185
+ def set_clip_warp_mode(song, params):
186
+ """Set warp mode for an audio clip."""
187
+ track_index = int(params["track_index"])
188
+ clip_index = int(params["clip_index"])
189
+ clip = get_clip(song, track_index, clip_index)
190
+
191
+ if clip.is_midi_clip:
192
+ raise ValueError("Warp modes only apply to audio clips")
193
+
194
+ mode = int(params["mode"])
195
+ if mode not in (0, 1, 2, 3, 4, 6):
196
+ raise ValueError(
197
+ "Invalid warp mode %d. Valid: 0=Beats, 1=Tones, 2=Texture, "
198
+ "3=Re-Pitch, 4=Complex, 6=Complex Pro" % mode
199
+ )
200
+
201
+ if "warping" in params:
202
+ clip.warping = bool(params["warping"])
203
+
204
+ clip.warp_mode = mode
205
+
206
+ return {
207
+ "track_index": track_index,
208
+ "clip_index": clip_index,
209
+ "warp_mode": clip.warp_mode,
210
+ "warping": clip.warping,
211
+ }
@@ -1,5 +1,5 @@
1
1
  """
2
- LivePilot - Scene domain handlers (6 commands).
2
+ LivePilot - Scene domain handlers (8 commands).
3
3
  """
4
4
 
5
5
  from .router import register
@@ -73,3 +73,27 @@ def set_scene_name(song, params):
73
73
  scene = get_scene(song, scene_index)
74
74
  scene.name = str(params["name"])
75
75
  return {"index": scene_index, "name": scene.name}
76
+
77
+
78
+ @register("set_scene_color")
79
+ def set_scene_color(song, params):
80
+ """Set a scene's color."""
81
+ scene_index = int(params["scene_index"])
82
+ scene = get_scene(song, scene_index)
83
+ scene.color_index = int(params["color_index"])
84
+ return {"index": scene_index, "color_index": scene.color_index}
85
+
86
+
87
+ @register("set_scene_tempo")
88
+ def set_scene_tempo(song, params):
89
+ """Set a scene's tempo (BPM, 20-999)."""
90
+ scene_index = int(params["scene_index"])
91
+ scene = get_scene(song, scene_index)
92
+ tempo = float(params["tempo"])
93
+ if tempo < 20 or tempo > 999:
94
+ raise ValueError("Tempo must be between 20 and 999 BPM")
95
+ scene.tempo = tempo
96
+ return {
97
+ "index": scene_index,
98
+ "tempo": scene.tempo,
99
+ }
@@ -1,5 +1,5 @@
1
1
  """
2
- LivePilot - Track domain handlers (12 commands).
2
+ LivePilot - Track domain handlers (14 commands).
3
3
  """
4
4
 
5
5
  from .router import register
@@ -80,17 +80,23 @@ def get_track_info(song, params):
80
80
  "color_index": track.color_index,
81
81
  "mute": track.mute,
82
82
  "solo": track.solo,
83
+ "is_foldable": track.is_foldable,
84
+ "is_grouped": track.is_grouped,
83
85
  "clip_slots": clips,
84
86
  "devices": devices,
85
87
  "mixer": mixer,
86
88
  "sends": sends,
87
89
  }
88
90
 
91
+ if track.is_foldable:
92
+ result["fold_state"] = bool(track.fold_state)
93
+
89
94
  # Regular tracks have arm and input type; return tracks get null values
90
95
  if track_index >= 0:
91
96
  result["arm"] = track.arm
92
97
  result["has_midi_input"] = track.has_midi_input
93
98
  result["has_audio_input"] = track.has_audio_input
99
+ result["current_monitoring_state"] = track.current_monitoring_state
94
100
  else:
95
101
  result["arm"] = None
96
102
  result["has_midi_input"] = None
@@ -227,3 +233,36 @@ def stop_track_clips(song, params):
227
233
  track = get_track(song, track_index)
228
234
  track.stop_all_clips()
229
235
  return {"index": track_index, "stopped": True}
236
+
237
+
238
+ @register("set_group_fold")
239
+ def set_group_fold(song, params):
240
+ """Fold or unfold a group track."""
241
+ track_index = int(params["track_index"])
242
+ track = get_track(song, track_index)
243
+ if not track.is_foldable:
244
+ raise ValueError("Track %d is not a group track" % track_index)
245
+ track.fold_state = int(bool(params["folded"]))
246
+ return {
247
+ "index": track_index,
248
+ "folded": bool(track.fold_state),
249
+ }
250
+
251
+
252
+ @register("set_track_input_monitoring")
253
+ def set_track_input_monitoring(song, params):
254
+ """Set input monitoring state for a track (0=In, 1=Auto, 2=Off)."""
255
+ track_index = int(params["track_index"])
256
+ if track_index < 0:
257
+ raise ValueError("Cannot set input monitoring on a return track")
258
+ track = get_track(song, track_index)
259
+ state = int(params["state"])
260
+ if state not in (0, 1, 2):
261
+ raise ValueError(
262
+ "Invalid monitoring state %d. Valid: 0=In, 1=Auto, 2=Off" % state
263
+ )
264
+ track.current_monitoring_state = state
265
+ return {
266
+ "index": track_index,
267
+ "monitoring_state": track.current_monitoring_state,
268
+ }