ableton-vibe

MCP.Pizza Chef: androidStern

Ableton-vibe is an MCP server that connects Ableton Live with AI models, enabling real-time music control, interaction, and automation through the Model Context Protocol. It allows developers and users to integrate Ableton's MIDI and scripting capabilities into AI workflows, facilitating dynamic music production and live performance enhancements.

Use This MCP server To

Control Ableton Live sessions via AI-driven commands Automate MIDI scripting and music production workflows Integrate live music performance data into AI models Enable real-time interaction between AI agents and Ableton Synchronize AI-generated music ideas with Ableton tracks Monitor and manipulate Ableton parameters programmatically Create AI-assisted live DJ sets using Ableton integration

README

Setup

  1. Install deps: yarn cause ableton-js uses it for some build scripts and pnpm.

npm install --global yarn brew install pnpm

  1. Install the midi-script in ableton:

git clone https://github.com/leolabs/ableton-js.git && cd ableton-js && yarn ableton11:start

  1. Clone the ableton-vibe mcp server if you havent yet:

git clone https://github.com/androidStern/ableton-vibe.git && cd ableton-vibe && pnpm i

  1. Build and watch changes:

npm run build

  1. Add mcp config to claude. General instructions here

replace path-to-repo with path to wherever you cloned ableton-vibe as for where claude's config is: on my machine the mcp config is in ~/Library/Application Support/Claude/claude_desktop_config.json/

{
  "mcpServers": {
    "ableton-vibe": {
      "command": "node",
      "args": ["<path-to-repo>/ableton-vibe/ableton-mcp.js"]
    }
  }
}

Usage

Make sure you have Ableton running. Restart claude before trying to use the server. Try asking claude "Create a midi track at index 0". thats all it can do right now lol.

Supported Ableton versions

I have tested with Ableton 11. Haven't tried with Ableton 12.

Supported OS

I've only tried this on my mac. I suspect you might need to change ablton-mcp.ts line 9 to get the temp directory logic working for windows but I haven't given it much thought yet. here's the relevant line const userTempDir = execSync('getconf DARWIN_USER_TEMP_DIR').toString().trim()

Debugging

you can run the mcp inspector to quickly debug the server: npm run inspect then open the url in the output. Instructions for using the inspector are here

Running Test Add Device Script

test-browser.js is an example script to add a device to your ableton set programaticaly. Ableton must be running and the ableton-js midi-remote script must be installed. Refer to step # 2 of Setup at the top of this file to see how to install midi-remote script.

node test-browser.js

Contributing

Right now everything is in ablton-mcp.ts so if you're adding tools or resources, put it there. Don't edit the ablton-mcp.JS file, you want the TS file.

Next Steps

  • get propper build and release setup. should be able to just install everything with a single command.
  • add the rest of the ableton api as mcp tools. i dont really want to do this by hand. it would be nice to discover and expose it all programatically.
  • add support for ableton 12
  • add tests
  • add support for other os (windows)
  • voice controll

ableton-vibe FAQ

How do I install the ableton-vibe MCP server?
Install dependencies with yarn and pnpm, install the midi-script in Ableton, clone the ableton-vibe repo, then build and run the server as per the GitHub instructions.
What prerequisites are needed before running ableton-vibe?
You need Ableton Live running with the midi-script installed, plus yarn and pnpm installed on your system.
How do I configure ableton-vibe with an MCP host like Claude?
Add the ableton-vibe server configuration to Claude's MCP config JSON, specifying the node command and path to ableton-mcp.js.
Can ableton-vibe handle real-time music control?
Yes, it enables real-time interaction and control of Ableton Live through MCP-enabled AI models.
Is ableton-vibe compatible with multiple LLM providers?
Yes, it works with any MCP-compatible host, supporting models like OpenAI, Claude, and Gemini.
What kind of interactions can AI models perform with Ableton via ableton-vibe?
AI models can send MIDI commands, automate tracks, monitor session states, and manipulate Ableton parameters dynamically.
Does ableton-vibe support live performance scenarios?
Yes, it is designed to facilitate live DJ sets and dynamic music production with AI assistance.
How do I update ableton-vibe after installation?
Pull the latest changes from the GitHub repo and rebuild the project using npm run build.