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 talks to: the Max for Livebridge.jsdevice (generic get/set/call) and the PythonAbletonAgentremote script (browsing, loading, MIDI notes).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 to talk to, via at least one of:
The Max for Live bridge — load
packages/ableton-agent/max/ableton-agent.amxdonto any track in your Live set. It wrapsbridge.jsand listens on fixed ports 9000/9001. Handles everything except browsing, loading, and MIDI note editing.The AbletonAgent remote script — 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). Required forlist_instruments/list_browser_category/browse/load_from_browserand thewrite_midi_notes/get_midi_notes/transpose_notesfamily — the Max bridge doesn't implement those. Live only loads remote scripts at startup, so restart Live (or toggle the control surface off/on) after editing__init__.py.
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-mcp-server
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 — withmax/bridge.jsand theAbletonAgentremote script both 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.
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