ableton-mind
The ableton-mind MCP server exposes Ableton Live's full Live Object Model (LOM) to LLMs, enabling AI-driven music production, session management, and hardware control.
Transport & Session Control
Play/stop playback and set global tempo (20–999 BPM)
Get session info (tempo, transport state, time signature, track counts, scale/root note)
Check Ableton Link & sync status
Track Management
List, create, upsert (find or create), rename, and set volume for MIDI, Audio, Return, and Master tracks
Get detailed track info (name, type, volume, panning, sends, clips, devices)
Clip & MIDI Editing
Create empty MIDI clips, add notes (pitch, start, duration, velocity, mute)
Fire, stop, and rename clips; configure loop settings
Set clip automation envelopes (linear, ramp, hold curves)
Fire scenes to trigger all clips on a row
Device & Browser
Get/set device parameters with knowledge-base metadata (55 bundled devices)
Inspect Max for Live patchers and VST/AU plug-ins
Browse Ableton's browser categories and load instruments, effects, presets, or samples onto tracks
Automation
Add arrangement automation points for mixer or device parameters
Replace full clip envelopes for complete automation rewrites
Verification & Snapshots
Take deep session snapshots (tracks, clips, devices) before and after mutations
Diff two snapshots to verify what actually changed
Recipes
List and apply embedded music recipes by category (drums, bass, chords, racks, arrangements, mixing, live_performance) with optional overrides
Push Hardware Control
Set Push 2/3 pad colors on the 8×8 grid and button LED states (solid, blink, pulse)
Switch Push modes (note, session, drum, step)
Provides a local copilot feature using Ollama to run LLMs for Ableton Live automation and queries.
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-mindcreate a new MIDI track with a simple kick and snare pattern at 120 BPM"
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-mind
Definitive MCP (Model Context Protocol) server for Ableton Live. Exposes the full Live Object Model to LLMs (Claude, Cursor, etc.) with an embedded native device knowledge base, declarative music recipes, an integrated verify loop, and reactive listeners.
Status: alpha / v0.1.1 published — core smoke passed against Ableton Live 12.4.1 on macOS and package validation is green. npm, GitHub Release
.mcpb, and the MCP Registry are live. Glama has a listing, but its hosted release/deploy must be published separately from the Glama admin build flow; Smithery metadata is present and may lag indexing. API unstable. Don't use in production yet.Phase 8 status: slice 1 delivers read-only Max for Live/plug-in introspection and Link/remote status discovery. Deeper M4L control, VST3 sidecars, remote DAW integration and mobile companion work remain pending.
📚 Full documentation: pantani.github.io/ableton-mind/
Architecture (3 layers)
Claude/Cursor ──MCP/stdio──▶ ableton-mind (TS, Node 20+) ──TCP NDJSON JSON-RPC──▶ Remote Script (Python, inside Live)src/— TypeScript MCP server. Tools, resources, prompts, TCP client, recipe runner, knowledge loader.live/AbletonMind/— Python Remote Script. TCP server on port9876, dispatches JSON-RPC to LiveAPI.recipes/,src/knowledge/— embedded JSON (drum kits, basslines, racks, device schemas).
Full spec in PLAN.md. Frozen contracts in _workspace/contracts/.
Related MCP server: AbletonMCP Enhanced
Highlights vs. existing MCP/OSC servers
Capability | ahujasid/ableton-mcp | AbletonOSC + MCP wrapper | ableton-mind |
MCP tools | 22 | ~30 | 36 |
LOM coverage | ~10% | ~95% | ~100% |
Knowledge base | none | none | 55 devices, scales, drum kits |
Recipes | none | none | 14 across 7 categories |
Verify loop | no | no | yes, integrated ( |
Render preview | no | no | yes (snapshot now, bounce planned) |
Reactive listeners → MCP notifications | no | partial (OSC) | yes (7 events live) |
Transactions (undo unitary) | no | no | yes |
Automation envelopes | no | partial | complete (linear / hold) |
Push 1/2/3 control | no | no | yes (pad/button/mode LEDs) |
Docker | no | no | yes |
| no | no | yes |
Doctor CLI | no | no | yes |
Requirements
Node 20+
Ableton Live 12 (priority; Live 11 supported)
macOS (primary), Windows (Phase 1 final)
Setup (source install)
npm install
npm run typecheck
npm run lint
npm run test
npm run buildInstall Remote Script (Python bridge)
Dev mode (symlink):
node scripts/install-remote-script.mjs # creates symlink
node scripts/install-remote-script.mjs --check # status only
node scripts/install-remote-script.mjs --copy # full copy (CI / snapshot)Manual:
macOS: copy
live/AbletonMind/to~/Music/Ableton/User Library/Remote Scripts/AbletonMind/Windows: copy to
~/Documents/Ableton/User Library/Remote Scripts/AbletonMind/
Then Live → Preferences → Link/Tempo/MIDI → Control Surface → AbletonMind.
Smoke test: docs/smoke-test.md.
Run the MCP server
npm run build
node dist/index.jsEnv vars:
Var | Default | |
|
| Python bridge host |
|
| Bridge TCP port |
|
| Per-request timeout |
|
| Max incoming JSON-RPC frame |
|
| Max in-flight JSON-RPC calls |
|
|
|
Local copilot
Run a local LLM against a curated subset of the same Ableton tools:
ollama pull qwen2.5:3b # optional; the UI can pull too
node dist/index.js chat # opens http://127.0.0.1:4142
node dist/index.js ask "What is in this set?"The default tier is read-only (safe). Use --write for simple changes or --creative for recipes/browser load.
Var | Default | |
|
| OpenAI-compatible endpoint |
|
| Local model id |
|
|
|
|
| Browser UI port |
See Local copilot.
Doctor CLI
npx ableton-mind-doctorChecks Node version, Remote Script install, bridge port, knowledge base integrity, recipes.
Distribution
npm:
npm install -g ableton-mind.Claude Code plugin marketplace:
claude plugin marketplace add Pantani/ableton-mind, thenclaude plugin install ableton-mind@ableton-mind.Claude Desktop one-click: download
ableton-mind-0.1.1.mcpbfrom the v0.1.1 GitHub Release.MCP Registry:
io.github.Pantani/ableton-mindis active in the official registry.Glama: listed at glama.ai/mcp/servers/Pantani/ableton-mind; hosted release is separate from the GitHub Release and still requires the Glama admin deploy + Make Release flow.
Source:
npm ci && npm run build && npm run install:remote-script.Docker:
docker build -t ableton-mind . && docker run --rm -i --network host ableton-mind.Smithery:
smithery.yamlis ready for listing/indexing.
Roadmap
See PLAN.md §12 and _workspace/PROGRESS.md.
Phase | Status |
0 — Spike | ✅ real smoke pass |
1 — ahujasid parity | ✅ 22/22 |
2 — Listeners | ✅ 7 events |
3 — Knowledge | ✅ 55 devices |
4 — Automation envelopes | ✅ |
5 — Preview/verify | ✅ snapshot+diff (bounce planned) |
6 — Push | ✅ pad/button/mode LEDs |
7 — Distribution | ✅ DXT/Docker/Smithery/CI/release ready |
8 — Long tail | 🔵 slice 1 delivered: read-only M4L/plug-in introspection + Link/remote status discovery; deeper M4L/VST3/remote DAW/mobile work pending |
License
MIT.
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Pantani/ableton-mind'
If you have feedback or need assistance with the MCP directory API, please join our Discord server