ableton-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ableton-mcp-serverCreate a new MIDI track"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ableton-mcp-server
An MCP server that exposes Ableton Live to
AI agents, built as a native Ableton Extension on top of the official
@ableton-extensions/sdk (released
in beta, June 2025).
It lets an agent (Claude, etc.) read and edit a Live set — tracks, clips, MIDI notes, devices/parameters, scenes — and render/import audio, all over a local MCP endpoint.
Status: beta. Targets Extensions SDK API
1.0.0.
How it works
An Ableton Extension is an activate(context) function that runs inside Live's
Extension Host — a full Node.js ≥22 process embedded in Live. This project's
activate() initializes the SDK and starts an in-process MCP server over
Streamable HTTP, bound to 127.0.0.1. The tool handlers call straight into
Live's data model — no second process, no IPC.
┌─────────────── Ableton Live ───────────────┐
│ Extension Host (Node 22) │
│ activate() ─ initialize(sdk) ─ Live data │
│ │ │
│ MCP server ── Streamable HTTP ──┐ │
└────────────────────────────────────┼───────┘
│ 127.0.0.1:39001/mcp
┌───────────▼──────────┐
│ MCP client (Claude) │
└──────────────────────┘Two consequences shape the design:
stdio is owned by the host, so the MCP transport is HTTP, not stdio.
The lifecycle is inverted — Live owns the process — so the MCP client connects to an already-running endpoint rather than spawning it. The server is only alive while Live + the extension are running; clients must tolerate it appearing/disappearing.
Object addressing
Tools reference Live objects by stable path strings:
Address | Object |
| the song |
| first regular track |
| a session clip slot |
| the clip in that slot |
| an arrangement clip |
| a device on a track |
| a device parameter |
| a scene |
Tools (31)
Group | Tools |
Song |
|
Tracks |
|
Clips |
|
MIDI |
|
Devices |
|
Scenes |
|
Resources |
|
What an agent can do
Read the set's state; compose (create tracks/clips, write MIDI notes), edit (rename, mute/solo/arm, clip name/color/loop on-off), sound-design (insert devices, set parameter values), and render/import audio (e.g. render a range of an audio track to WAV).
Known limits (from the SDK, not this server)
No transport/playback: no play/stop/fire/record — the agent composes and edits, it doesn't perform.
Loop points are read-only after creation (
set_clip_propertiesonly toggleslooping).No push events: request/response only; poll to observe changes.
render_pre_fx_audiorenders pre-effects audio of an arrangement range.
Setup
Requires Node ≥22.11 and a version of Ableton Live that supports extensions.
npm install
npm test # unit + real HTTP-loopback tests (no Live needed)
npm run build # bundles src/extension.ts -> dist/extension.js (CJS)Run inside Live (development)
You need the Live Beta build that supports extensions (from Ableton's Centercode release page). Ableton recommends Node ≥ 24.14.1 for the toolchain; this project also builds/tests fine on Node 22 (Live runs the extension on its own bundled Node).
Enable Developer Mode in Live:
Preferences → Extensions → Developer Mode. Required — otherwise the CLI can't connect to Live.Point the CLI at Live, either by copying
.env.exampleto.envand settingEXTENSION_HOST_PATH, or by passing--live:npm start # uses .env # or npm start -- --live "/Applications/Ableton Live 12 Suite Beta.app"
npm start builds the extension and launches Live's Extension Host with it. On
start you'll see, in the terminal/host log:
[ableton-mcp] MCP server listening on http://127.0.0.1:39001/mcpConfig via env: ABLETON_MCP_HOST (default 127.0.0.1), ABLETON_MCP_PORT
(default 39001). Pass --inspect for VS Code debugging.
Connect an MCP client
Because the server is already running, register it as an HTTP MCP server (do not let the client spawn it). For Claude Code:
claude mcp add --transport http ableton-live http://127.0.0.1:39001/mcpOr inspect it with the MCP Inspector:
npx @modelcontextprotocol/inspector
# transport: Streamable HTTP, URL: http://127.0.0.1:39001/mcpThen try: get_song_state, set_tempo {bpm:124}, create_midi_track,
create_midi_clip {track:"track/0", slot:0, length:4},
set_notes {clip:"track/0/clipslot/0/clip", notes:[{pitch:60,startTime:0,duration:1}]}.
Package for distribution
npm run package # production bundle -> Ableton-MCP-0.1.0.ablx (manifest + entry)A .ablx is the shareable/installable archive. During the SDK beta the primary
way to load an extension is Developer Mode + npm start above.
Development
Built test-first with vitest. The architecture keeps the host out of the test path:
Pure logic (
addressing.ts,notes.ts) — tested with no mocks.Tools depend only on the narrow
Liveinterface and are tested against an in-memoryFakeLive.MCP server is tested with a real
Client+McpServeroverInMemoryTransport, and the HTTP layer with a real loopback (real MCP client overStreamableHTTPClientTransport).The only host-bound code (
live.context.ts,extension.ts) is covered by the real-Live integration test, not unit tests — the native host can't run in CI.
src/
addressing.ts object path parse/serialize (pure)
notes.ts MIDI note validation (pure)
live.ts the Live facade interface + DTOs
live.fake.ts in-memory Live for tests
live.context.ts real Live over the Extension Host
tools/ one file per tool group + registry
server.ts builds the McpServer from the tool registry
http.ts Streamable HTTP transport on localhost
extension.ts activate() entry pointLicense
The Ableton Extensions SDK and CLI are © Ableton AG (see their LICENSE.md).
This project is provided as-is.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/giuliobracci/ableton-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server