This MCP server allows for real-time interaction and control with Ableton Live's Arrangement View, helping music producers automate tedious operations through AI assistance. It connects Ableton Live with AI tools via the Model Context Protocol (MCP).
npx
command availableChoose ONE of these methods to install the required MIDI Remote Scripts:
Method 1: One-line installation (Recommended)
npx @xiaolaa2/ableton-copilot-mcp --install-scripts
# or use the short form
npx @xiaolaa2/ableton-copilot-mcp -is
Method 2: Tool-assisted installation
init_ableton_js
to complete the installation automaticallyMethod 3: Manual installation
C:\Users\[username]\Documents\Ableton\User Library\Remote Scripts
/Users/[username]/Music/Ableton/User Library/Remote Scripts
midi-script
folder to the location aboveAbletonJS
Launch Ableton Live
Enable AbletonJS Control Surface
Preferences
→ Link/MIDI
MIDI
tab, locate the Control Surface
sectionAbletonJS
from the dropdown menuConnect using an MCP client
Compatible MCP clients include:
Add this to your Cursor settings:
"ableton-js-mcp": {
"command": "npx",
"args": [
"-y",
"@xiaolaa2/ableton-copilot-mcp"
]
}
For the latest version:
"ableton-js-mcp": {
"command": "npx",
"args": [
"-y",
"@xiaolaa2/ableton-copilot-mcp@latest"
]
}
Specify a custom data storage location:
"ableton-js-mcp": {
"command": "npx",
"args": [
"-y",
"@xiaolaa2/ableton-copilot-mcp"
],
"env": {
"BASE_PATH": "D:\\ableton_copilot_mcp"
}
}
Ableton Live Version | Status |
---|---|
12.1.10 | ✅ Tested and working |
11.x | ⚠️ Not tested |
10.x | ⚠️ Not tested |
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.