ableton-mcp-extended
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-mcp-extendedSet the tempo to 128 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 MCP Extended
Complete Claude AI integration for Ableton Live through Model Context Protocol (MCP)
Control Ableton Live directly from Claude with natural language - create tracks, compose melodies, mix songs, and produce music using AI assistance!
๐ต Features
Session Control
Playback Control: Start/stop playback, control recording
Tempo Management: Set and adjust session tempo
Session Info: Get real-time session status
Track Management
Create Tracks: MIDI and audio tracks with custom names
Track Info: Get detailed track information including clips and devices
Track Control: Volume, mute, solo, and track naming
Track Deletion: Remove unwanted tracks
Clip Operations
Create Clips: MIDI clips with custom length and names
Add Notes: Programmatic MIDI note creation with pitch, timing, velocity
Clip Control: Fire, stop, and delete clips
Clip Naming: Organize clips with descriptive names
Device & Effects
Device Info: Get information about track devices and parameters
Parameter Control: Adjust device parameters programmatically
Instrument Loading: Load instruments and effects from browser
Browser Integration
Browse Content: Explore Ableton's browser hierarchy
Load Instruments: Load instruments, drum kits, and effects
Sample Management: Access and load samples and packs
๐ Quick Start
1. Installation
Run the automated installer:
cd ableton-mcp-extended
python install_remote_script.pyThe installer will:
๐ Auto-detect your Ableton Live installation
๐ฆ Install the remote script
โ๏ธ Configure Claude Desktop
๐ฏ Set up the Python package
2. Ableton Live Setup
Start Ableton Live
Go to Preferences โ MIDI
Control Surface: Select
AbletonMCP_Extended_Remote_ScriptInput/Output: Leave as "None"
3. Claude Desktop Setup
Restart Claude Desktop after installation. The MCP server should appear in your configuration.
4. Start Creating Music!
Open Claude and try commands like:
"Create a drum track and add a basic beat"
"Add a bass line in C minor"
"Create a chord progression using piano"
"Set the tempo to 128 BPM and start playback"๐น Usage Examples
Creating a Basic Song Structure
Hey Claude, let's create a song:
1. Set the tempo to 120 BPM
2. Create a drum track with a basic 4/4 beat
3. Add a bass track with a simple bass line in C major
4. Create a piano track with a chord progression: C - Am - F - G
5. Start playback so I can hear itDetailed Music Production
I want to create a house track:
1. Set tempo to 128 BPM
2. Create a drum track called "House Drums"
3. Add a classic house beat with:
- Kick on beats 1 and 3
- Snare on beats 2 and 4
- Hi-hats on every 8th note
4. Create a bass track and add a pumping bass line
5. Add some reverb to the drums and adjust the mixLive Performance Control
During my live set:
1. Mute the bass track
2. Gradually increase the volume of track 3
3. Fire the clip in slot 2 of the drum track
4. Stop all clips and restart from the beginning๐ง Manual Installation
If the automatic installer doesn't work, follow these steps:
1. Install Python Package
pip install -e .2. Install Remote Script
Copy AbletonMCP_Extended_Remote_Script to your Ableton Live MIDI Remote Scripts directory:
macOS:
/Applications/Ableton Live [Version].app/Contents/App-Resources/MIDI Remote Scripts/Windows:
C:\Program Files\Ableton\Live [Version]\Resources\MIDI Remote Scripts\3. Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"ableton-mcp-extended": {
"command": "uvx",
"args": ["ableton-mcp-extended"]
}
}
}Config file locations:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
~/AppData/Roaming/Claude/claude_desktop_config.jsonLinux:
~/.config/claude/claude_desktop_config.json
๐งช Testing
Run the comprehensive test suite:
# Install test dependencies
pip install pytest pytest-asyncio pytest-timeout
# Run all tests
pytest
# Run specific test categories
pytest tests/test_ableton_connection.py # Connection tests
pytest tests/test_music_creation.py # Music creation workflows
pytest tests/test_integration.py # Integration tests๐๏ธ Available Commands
Session Commands
get_session_info()- Get tempo, time signature, playback stateset_tempo(tempo)- Set session tempo (20-999 BPM)start_playback()- Start playbackstop_playback()- Stop playbackset_session_record(enabled)- Enable/disable recording
Track Commands
create_midi_track(name, position)- Create MIDI trackcreate_audio_track(name, position)- Create audio trackget_track_info(track_index)- Get track detailsset_track_name(track_index, name)- Rename trackset_track_volume(track_index, volume)- Set volume (0.0-1.0)set_track_mute(track_index, mute)- Mute/unmute trackset_track_solo(track_index, solo)- Solo/unsolo trackdelete_track(track_index)- Delete track
Clip Commands
create_clip(track_index, slot_index, length_bars, name)- Create clipadd_notes_to_clip(track_index, slot_index, notes)- Add MIDI notesset_clip_name(track_index, slot_index, name)- Rename clipfire_clip(track_index, slot_index)- Play clipstop_clip(track_index, slot_index)- Stop clipdelete_clip(track_index, slot_index)- Delete clip
Browser Commands
get_browser_tree()- Get browser structureget_browser_items(path)- Get items at pathload_browser_item(item_path, track_index)- Load itemload_instrument(name, track_index)- Load instrumentload_drum_kit(name, track_index)- Load drum kit
Device Commands
get_device_info(track_index, device_index)- Get device infoset_device_parameter(track_index, device_index, param_index, value)- Set parameter
๐ผ MIDI Note Format
When adding notes to clips, use this format:
notes = [
{
'pitch': 60, # MIDI note number (60 = C4)
'time': 0.0, # Start time in beats
'duration': 1.0, # Note length in beats
'velocity': 100, # Velocity (1-127)
'mute': False # Optional: mute state
}
]Common MIDI Notes:
C4 = 60, C#4 = 61, D4 = 62, D#4 = 63, E4 = 64
F4 = 65, F#4 = 66, G4 = 67, G#4 = 68, A4 = 69
A#4 = 70, B4 = 71, C5 = 72
Drum Notes (General MIDI):
Kick = 36, Snare = 38, Hi-Hat = 42, Open Hi-Hat = 46
Crash = 49, Ride = 51
๐ง Troubleshooting
Connection Issues
"Failed to connect to Ableton"
Ensure Ableton Live is running
Check that the remote script is properly installed
Verify the remote script is selected in MIDI preferences
Try restarting Ableton Live
"Remote script not appearing in preferences"
Check the script was copied to the correct directory
Ensure the
__init__.pyfile is presentTry refreshing or restarting Ableton Live
Claude Integration Issues
"MCP server not found"
Restart Claude Desktop after configuration
Check the config file syntax and location
Verify the Python package is installed:
pip list | grep ableton-mcp
"Commands not working"
Check connection status: Ask Claude "What's the Ableton connection status?"
Verify Ableton is running and the remote script is active
Check for error messages in Claude
Performance Issues
"Slow response times"
Reduce the number of concurrent operations
Use smaller clip lengths for testing
Check system resources and close other applications
"Memory usage"
Restart Ableton Live periodically during long sessions
Clear unused clips and tracks
Monitor system memory usage
๐ค Contributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch
Add tests for new functionality
Ensure all tests pass
Submit a pull request
๐ License
MIT License - see LICENSE file for details.
๐ Acknowledgments
Built on the Model Context Protocol (MCP) by Anthropic
Inspired by the Ableton Live community
Uses FastMCP for efficient server implementation
๐ Links
Start making music with AI today! ๐ตโจ
Latest Blog Posts
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/RoyDGerkoeter/ableton-mcp-extended'
If you have feedback or need assistance with the MCP directory API, please join our Discord server