ableton-agent-mcp
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-agent-mcpChange the tempo to 120 BPM and start playback."
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-agent
A Bun workspace with two packages:
packages/ableton-agent— the TypeScript library (Live/Song/Track/Clip/Device) plus the two OSC transports it can talk to: the PythonAbletonAgentremote script (the primary transport — everything goes through it) and the Max for Livebridge.jsdevice (auxiliary, generic get/set/call only).packages/ableton-agent-mcp— an MCP server exposing the library as tools for an LLM agent, following the DAW tool spec in.claude/references/daw_mcp_tool_specs.mdwhere the Live Object Model supports it: session state, tempo/signature/key, transport, tracks & mixer, devices & parameters, clips, and low-level MIDI note editing.
To install dependencies:
bun installRun a package's script from the root with --filter, e.g.:
bun run --filter ableton-agent test
bun run --filter ableton-agent check-agent
bun run --filter ableton-agent-mcp startRunning the MCP server
The server needs a running Ableton Live session with:
The AbletonAgent remote script (required — the sole transport) — symlink or copy
packages/ableton-agent/remote-script/AbletonAgentinto Ableton's User Library Remote Scripts folder (e.g.~/Music/Ableton/User Library/Remote Scripts/AbletonAgenton macOS), then enable AbletonAgent as a Control Surface in Live's Link/Tempo/MIDI preferences (ports 9010/9011). Once enabled it's active for every project, on any Live edition. Live only loads remote scripts at startup, so restart Live after editing__init__.py.The Max for Live bridge (optional, auxiliary) — load
packages/ableton-agent/max/ableton-agent.amxdonto any track in your Live set (fixed ports 9000/9001). It speaks the same generic get/set/call protocol and stays available for raw access and diagnostics, but nothing in the library or MCP server requires it.
With one or both running, sanity-check connectivity:
bun run --filter ableton-agent check-agentThen start the MCP server:
bun run --filter ableton-agent-mcp startIt speaks MCP over stdio, so it's meant to be launched by an MCP client rather than left running in a terminal. To wire it into Claude Desktop, add it to claude_desktop_config.json:
{
"mcpServers": {
"ableton-agent": {
"command": "bun",
"args": ["run", "/absolute/path/to/ableton-agent/packages/ableton-agent-mcp/index.ts"]
}
}
}Both transports default to fixed local ports; override with env vars if you've changed either side:
Env var | Default | Transport |
|
| Max bridge |
|
| Max bridge |
|
| Max bridge |
|
| AbletonAgent |
|
| AbletonAgent |
|
| AbletonAgent |
Related MCP server: ableton-mind
Testing
bun test (or the commands above) runs two kinds of tests:
Fake-backed tests (
live.test.ts,packages/ableton-agent-mcp/index.test.ts) exercise the library and every MCP tool against an in-memory stand-in for Ableton (testSupport/fakeAbleton.ts) that speaks the real OSC wire protocol. These always run and never touch a real Live session.packages/ableton-agent-mcp/index.real.test.tsexercises every MCP tool against a real, running Ableton Live session — with theAbletonAgentremote script enabled. There's no opt-in flag and no skipping: every test always attempts its real call and reports a genuine pass or fail. This means plainbun testrequires Ableton to be open, and will start real, audible playback. If Ableton isn't reachable, or a specific backend/feature isn't available, the affected tests fail with a message explaining what's missing — seepackages/ableton-agent/check-agent.tsto debug connectivity.All mutations are confined to a scratch MIDI track it creates and deletes; global properties it touches (tempo, time signature, key, playhead) are saved and restored.
This project was created using bun init in bun v1.3.14. Bun is a fast all-in-one JavaScript runtime.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceMCP server that enables AI agents to read and edit Ableton Live sets, including tracks, clips, MIDI notes, devices, and scenes.1
- AlicenseAqualityAmaintenanceMCP server for Ableton Live that exposes the Live Object Model to LLMs, enabling natural language control of music production.36714MIT
- AlicenseAqualityCmaintenanceMCP server that bridges Ableton Live with AI models, enabling real-time project inspection and control such as track overview, device parameters, and audio analysis.12MIT
- FlicenseBqualityDmaintenanceMCP server for controlling Ableton Live, enabling AI assistants to interact with Live sessions through tools for track/clip/scene management, playback control, and device parameter adjustments.48
Related MCP Connectors
MCP server for Producer/Riffusion AI music generation
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/ju5tinz/ableton-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server