loading…
Search for a command to run...
loading…
Enables programmatic control of Ableton Live using natural language to manage session transport, tracks, MIDI clips, and device parameters. It also integrates E
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 performance tools.
Control Ableton Live using natural language via AI assistants like Claude or Cursor. This project provides a robust Model Context Protocol (MCP) server that translates natural language commands into precise actions within your Ableton Live session.
License: MIT Python 3.10+ Ableton Live 11+
Video demonstration: https://www.youtube.com/watch?v=7ZKPIrJuuKk
This tool is designed for producers, developers, and AI enthusiasts who want to streamline their music production workflow, experiment with generative music, and build custom integrations with Ableton Live.
You can transform this conversation:
👤 "Create a brief minimalist/neo-classical composition in a style similar to Ólafur Arnalds'. (Ableton MCP) / I've loaded four MIDI tracks called "Noire" and "Noire (2) ["Emotional Felt" presets], "Noire (2) ["Reversed Felt" preset, for ambient background], and "Noire (3) ["Ethereal Felt" preset, also for ambient background]. All loaded with nice piano instruments. You have also a MIDI track called "Strings" with a nice string ensemble instrument loaded. Feel free to add new instruments and effects, if pertinent."
🤖 "Creating MIDI clips... Adding effects... Done!"
👤 "Then, use ElevenLabs MCP to create a spoken-word audio clip (default voice and settings) with a relevant poem in the style of “Jim Morrison” to accompany the composition."
🤖 "Generating poem... Transforming it into speech... Importing it into your session... Done!"
Into this music production session:
https://github.com/user-attachments/assets/d6ef2de5-bdeb-4097-acc0-67d70f7f85b3
This project provides comprehensive, programmatic control over the Ableton Live environment.
Session and Transport Control:
Track Management:
MIDI Clip and Note Manipulation:
Device and Parameter Control:
Automation and Envelopes:
Browser Integration:
Voice & Audio Generation
Extensible Framework for Custom Tools
git clone https://github.com/uisato/ableton-mcp-extended.git
cd ableton-mcp-extended
pip install -e .
C:\Users\[You]\Documents\Ableton\User Library\Remote Scripts\~/Library/Preferences/Ableton/Live [Version]/User Remote Scripts/AbletonMCPAbletonMCP_Remote_Script/__init__.py into this folderFor Claude Desktop:
{
"mcpServers": {
"AbletonMCP": {
"command": "python",
"args": ["C:/path/to/ableton-mcp-extended/MCP_Server/server.py"]
}
}
}
For Cursor: Add MCP server in Settings → MCP with the same path.
Open your AI assistant and try:
graph TB
A[You: Natural Language] --> B[AI Assistant]
B --> C[MCP Server]
C --> D[Ableton Remote Script]
D --> E[Ableton Live API]
E --> F[🎵 Your Music]
G[ElevenLabs AI] --> H[Generated Audio]
H --> C
For real-time parameter control with ultra-low latency:
# Install the hybrid server
cp -r Ableton-MCP_hybrid-server/AbletonMCP_UDP/ ~/Remote\ Scripts/AbletonMCP_UDP/
# Try the XY Mouse Controller example
cd experimental_tools/xy_mouse_controller
python mouse_parameter_controller_udp.py
This demonstrates how to build:
This repository can be integrated with other MCP servers, such as one for ElevenLabs, to generate and import audio directly into your project.
Set up the ElevenLabs MCP server according to its instructions.
Update your AI assistant's config to include both servers.
Example mcp-config.json:
{
"mcpServers": {
"AbletonMCP": {
"command": "python",
"args": ["/path/to/ableton-mcp-extended/server.py"]
},
"ElevenLabs": {
"command": "python",
"args": ["/path/to/elevenlabs_mcp/server.py"],
"env": {
"ELEVENLABS_API_KEY": "your-api-key-here"
}
}
}
}
This project includes several specialized components:
Tag me with your AI-generated experiments! I love seeing what the community creates:
YouTube | Instagram | Patreon | Website
This project is licensed under the MIT License - see LICENSE for details.
Built with:
Inspired by: The original ableton-mcp project
Made with ❤️ for the music production community
If this project helps your creativity, consider giving it a ⭐ star!
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"ableton-mcp-extended": {
"command": "npx",
"args": []
}
}
}