Ableton Live Control

v1.0.0Developer Toolsstable

Enables programmatic control of Ableton Live using natural language to manage session transport, tracks, MIDI clips, and device parameters. It also integrates ElevenLabs for AI-generated audio and provides a high-performance framework for real-time p

ableton-mcp-extendedmcpai-integration
Share:
205
Stars
0
Downloads
0
Weekly
0/5

What is Ableton Live Control?

Ableton Live Control is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to enables programmatic control of ableton live using natural language to manage session transport, tracks, midi clips, and device parameters. it also integrates elevenlabs for ai-generated audio and pro...

Enables programmatic control of Ableton Live using natural language to manage session transport, tracks, MIDI clips, and device parameters. It also integrates ElevenLabs for AI-generated audio and provides a high-performance framework for real-time p

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Enables programmatic control of Ableton Live using natural l

Use Cases

Control Ableton Live with natural language commands.
Manage tracks, MIDI clips, and device parameters programmatically.
Generate AI-assisted audio using ElevenLabs integration.
uisato

Maintainer

LicenseMIT License
Languagepython
Versionv1.0.0
UpdatedMay 19, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx ableton-mcp-extended

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Ableton Live Control

Ableton MCP Extended is a Python-based MCP server that bridges AI assistants like Claude directly into Ableton Live, allowing you to control transport, manage tracks, create and edit MIDI clips, adjust device parameters, and even generate audio via ElevenLabs — all through natural language. It works by installing a Remote Script inside Ableton Live that opens a local socket, which the Python MCP server connects to and translates into MCP tool calls. This makes it possible to compose music, build arrangements, and tweak synthesis parameters conversationally without touching the Ableton UI.

Prerequisites

  • Ableton Live 11 or later installed on your machine
  • Python 3.10 or later installed
  • Claude Desktop or another MCP client
  • An ElevenLabs API key (optional, only required for voice/audio generation features)
  • Git for cloning the repository
1

Clone the repository and install dependencies

Clone the project from GitHub and install it as an editable Python package so the MCP server script is available.

git clone https://github.com/uisato/ableton-mcp-extended.git
cd ableton-mcp-extended
pip install -e .
2

Install the Ableton Remote Script

Create an 'AbletonMCP' folder inside your Ableton User Library Remote Scripts directory and copy the Remote Script file into it. On Mac: ~/Music/Ableton/User Library/Remote Scripts/AbletonMCP/. On Windows: C:\Users\<You>\Documents\Ableton\User Library\Remote Scripts\AbletonMCP\.

# Mac example
mkdir -p ~/Music/Ableton/User\ Library/Remote\ Scripts/AbletonMCP
cp ableton-mcp-extended/AbletonMCP_Remote_Script/__init__.py \
   ~/Music/Ableton/User\ Library/Remote\ Scripts/AbletonMCP/
3

Activate the Remote Script in Ableton Live

Open Ableton Live and go to Preferences > Link/Tempo/MIDI. In the Control Surface dropdown, select 'AbletonMCP'. Set both Input and Output to 'None'. Close Preferences — Ableton will now listen for connections from the MCP server.

4

Configure Claude Desktop

Edit claude_desktop_config.json to point to the MCP server Python script. Use the absolute path to server.py inside the cloned repository.

{
  "mcpServers": {
    "AbletonMCP": {
      "command": "python",
      "args": ["/absolute/path/to/ableton-mcp-extended/MCP_Server/server.py"]
    }
  }
}
5

Add ElevenLabs integration (optional)

If you want AI-generated audio and voice cloning, add a second MCP server entry for ElevenLabs, supplying your API key in the env block.

{
  "mcpServers": {
    "ElevenLabs": {
      "command": "python",
      "args": ["/path/to/elevenlabs_mcp/server.py"],
      "env": {
        "ELEVENLABS_API_KEY": "your-api-key-here"
      }
    }
  }
}
6

Restart Claude Desktop and start composing

Restart Claude Desktop to load the new MCP configuration. Open Ableton Live with a project, then ask Claude to create tracks, add MIDI clips, or adjust device parameters.

Ableton Live Control Examples

Client configuration

claude_desktop_config.json entry for Ableton MCP Extended pointing to the local Python server script.

{
  "mcpServers": {
    "AbletonMCP": {
      "command": "python",
      "args": ["/Users/yourname/ableton-mcp-extended/MCP_Server/server.py"]
    }
  }
}

Prompts to try

Example natural language prompts to control Ableton Live through Claude.

- "Create a new MIDI track and load a grand piano instrument."
- "Add a 4-bar drum beat clip on track 2 at 120 BPM."
- "Mute all tracks except the bass and kick."
- "Set the reverb decay parameter on track 3 to 0.6."
- "Create a minimal neo-classical composition in the style of Ólafur Arnalds across 4 tracks."

Troubleshooting Ableton Live Control

Claude Desktop cannot connect to Ableton — 'Connection refused' or server not found

Confirm Ableton Live is running with the AbletonMCP Remote Script activated in Preferences > Link/Tempo/MIDI. The Remote Script opens a local socket on startup; if Ableton is not running, the MCP server has nothing to connect to.

Remote Script does not appear in Ableton's Control Surface list

Verify the folder is named exactly 'AbletonMCP' (case-sensitive on Mac) and contains __init__.py. Restart Ableton Live after copying the file — it scans for Remote Scripts only on startup.

ElevenLabs voice generation fails or returns errors

Check that ELEVENLABS_API_KEY is set correctly in the ElevenLabs MCP server env config. Ensure your ElevenLabs plan supports the voice/model you are requesting and that you have remaining character quota.

Frequently Asked Questions about Ableton Live Control

What is Ableton Live Control?

Ableton Live Control is a Model Context Protocol (MCP) server that enables programmatic control of ableton live using natural language to manage session transport, tracks, midi clips, and device parameters. it also integrates elevenlabs for ai-generated audio and provides a high-performance framework for real-time p It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Ableton Live Control?

Follow the installation instructions on the Ableton Live Control GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Ableton Live Control?

Ableton Live Control works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Ableton Live Control free to use?

Yes, Ableton Live Control is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "ableton-mcp-extended": { "command": "npx", "args": ["-y", "ableton-mcp-extended"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Ableton Live Control?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides