Ableton MCP
Enables natural language control over Ableton Live for generating musical patterns, melodies, and full song arrangements. It also provides tools for sample searching and mixing assistance through an OSC-based connection with Claude Desktop.
README
š English | ę„ę¬čŖ
š¹ Ableton MCP
An AI agent that gives you full control over Ableton Live using natural language.
š Two Modes
1ļøā£ MCP Mode (Recommended) - No API Key Required!
Use directly from Claude Desktop. Control Ableton just by chatting - no API key needed.
2ļøā£ CLI Mode - Standalone
Operate from terminal using your Anthropic API key.
ā ļø Note: CLI mode is experimental and has not been fully tested.
š MCP Mode Setup (No API Key Required)
1. Installation
cd ableton-mcp
pip install -e .
2. Configure Claude Desktop
Edit the Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ableton-mcp": {
"command": "python",
"args": ["-m", "src.mcp_server"],
"cwd": "/path/to/ableton-mcp"
}
}
}
ā ļø Replace cwd with the actual path to your ableton-mcp folder.
š Windows users: See INSTALL_WINDOWS.md for detailed instructions.
3. Install AbletonOSC
Option A: Max for Live Device (Simple)
- Download AbletonOSC
- Drag
AbletonOSC.amxdonto a track in Ableton Live
Option B: Remote Script (Recommended)
- Download from https://github.com/ideoforms/AbletonOSC
- Place in Remote Scripts folder:
- Windows:
C:\Users\<YourName>\Documents\Ableton\User Library\Remote Scripts\AbletonOSC - macOS:
~/Music/Ableton/User Library/Remote Scripts/AbletonOSC
- Windows:
- Folder structure:
AbletonOSC\__init__.pyshould be directly inside - In Ableton Live ā Preferences ā Link/Tempo/MIDI ā Control Surface ā Select AbletonOSC
4. Restart Claude Desktop
After restarting, you can control Ableton directly through chat!
You: Create a 4-minute EDM track
Claude: [using generate_arrangement tool]
Generated arrangement...
You: Add trap-style drums
Claude: [using create_drum_track tool]
Created drum track 'Drums'...
⨠Features
š„ Drum/Rhythm Generation
- Basic beats, four-on-floor, trap, breakbeat, D&B
- Custom pattern creation
š¹ Melody/Synth Generation
- Melody: Scale-based auto-generation (adjustable density and contour)
- Basslines: basic, walking, syncopated, octave, arpeggiated
- Chord progressions: pop, jazz, sad, epic, dark, edm, lofi, cinematic
- Arpeggios: up, down, updown, random (8th/16th/triplet)
š Sample Search
- Local library search (Ableton Core Library, Splice, etc.)
- Freesound API support
- Natural language queries
šļø Mixing Assistance
- Frequency collision detection (kick vs bass, etc.)
- Automatic sidechain compression setup
- EQ suggestions
- Level/dynamics analysis
š Song Structure Generation
- Genre templates: EDM, House, Techno, D&B, HipHop, Trap, Lo-Fi, Ambient, Pop
- Complete structure: Intro ā Buildup ā Drop ā Breakdown ā Outro
- Automatic automation generation
š» CLI Mode Usage
Launch
# Ableton connection mode
python src/cli.py
# Mock mode (test without Ableton)
python src/cli.py --mock
Example Session
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā š¹ Ableton Agent CLI v2.0 š¹ ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
š¤ You: Create a 4-minute EDM track
š¤ Agent: I'll generate an EDM track arrangement.
šļø Executing: generate_arrangement
Parameters: {"genre": "edm", "duration_minutes": 4.0}
ā
Generated arrangement:
šµ Untitled Edm
Tempo: 128 BPM | Key: Am
Total: 72 bars
š Structure:
[ 0] intro | 8 bars | Energy: āāāāāāāāāā
[ 8] buildup | 8 bars | Energy: āāāāāāāāāā
[ 16] drop | 16 bars | Energy: āāāāāāāāāā
[ 32] breakdown | 8 bars | Energy: āāāāāāāāāā
[ 40] buildup | 8 bars | Energy: āāāāāāāāāā
[ 48] drop | 16 bars | Energy: āāāāāāāāāā
[ 64] outro | 8 bars | Energy: āāāāāāāāāā
š¤ You: Create trap-style drums
š¤ Agent: I'll create a trap-style drum pattern.
šļø Executing: create_drum_track
Parameters: {"pattern_type": "trap", "bars": 2, "name": "Trap Drums"}
ā
Created drum track 'Trap Drums' (pattern: trap, 2 bars)
āØļø Commands
Special Commands
| Command | Description |
|---|---|
/help |
Show help |
/status |
Show project status |
/genres |
List available genres |
/arrangement |
Show current arrangement |
/mock |
Toggle mock mode |
/clear |
Clear conversation history |
quit |
Exit |
Natural Language Examples
Drums
- "Create a basic drum pattern"
- "Make a 4-bar trap beat"
- "Four on the floor kick"
- "Create a breakbeat"
Melody/Bass
- "Create a melody in C minor"
- "Bright pentatonic melody"
- "Syncopated bassline"
- "Add an octave bass"
- "16th note arpeggio"
Chords
- "Create a dark chord progression"
- "Jazzy chords"
- "Cinematic chord progression"
Samples
- "Search for ethnic percussion"
- "Dark synth 140BPM"
- "Find kick samples"
Mixing
- "Analyze the mix"
- "Kick and bass are clashing"
- "It sounds muddy"
- "Set up sidechain"
- "Add reverb"
Song Structure
- "Create a 4-minute EDM track"
- "Generate a lo-fi hip hop structure"
- "Make a techno arrangement"
Mood
- "Make it darker"
- "Brighten it up"
- "Make it more intense"
- "Chill vibe"
š Project Structure
ableton-mcp/
āāā .gitignore
āāā LICENSE
āāā README.md # English
āāā README.ja.md # Japanese
āāā INSTALL_WINDOWS.md # Windows setup guide
āāā pyproject.toml
āāā setup.bat # Windows setup script
āāā claude_desktop_config.example.json # Example config
āāā src/
āāā __init__.py
āāā mcp_server.py # MCP server (for Claude Desktop)
āāā cli.py # CLI interface
āāā agent.py # AI agent (Claude API)
āāā ableton_osc.py # Ableton OSC communication
āāā synth_generator.py # Melody/bass/chord/arpeggio generation
āāā sample_search.py # Sample search engine
āāā mixing_assistant.py # Mixing analysis & assistance
āāā arrangement_generator.py # Song structure generation
š§ Extending
Adding New Tools
- Add tool definition to
ABLETON_TOOLSinsrc/agent.py:
{
"name": "your_tool_name",
"description": "Tool description",
"input_schema": {
"type": "object",
"properties": {
"param1": {"type": "string", "description": "Description"}
},
"required": ["param1"]
}
}
- Add execution logic to
execute_commandinsrc/cli.py:
elif tool == "your_tool_name":
return self._your_implementation(params)
Adding Genre Templates
Add to GenreTemplates.TEMPLATES in src/arrangement_generator.py:
"your_genre": {
"sections": [
("intro", 8, 0.3, ["pad"]),
("verse", 16, 0.6, ["drums", "bass"]),
# ...
],
"tempo_range": (100, 120),
"default_key": "Am",
}
šļø Architecture
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā User Input (Natural Language) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Claude API (Tool Use) ā
ā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā ā
ā ā Drums ā ā Melody ā ā Samples ā ā Mixing ā ... ā
ā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Command Executor ā
ā āāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāā ā
ā ā SynthGenerator ā ā SampleSearch ā ā MixingAssist ā ā
ā āāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāā ā
ā āāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāā ā
ā ā ArrangementGen ā ā DrumPattern ā ā
ā āāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāā ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā OSC Communication ā
ā (python-osc) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Ableton Live ā
ā (via AbletonOSC) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Troubleshooting
Startup Order (Important!)
- Start Ableton Live first
- Confirm AbletonOSC shows "Started AbletonOSC on address ('0.0.0.0', 11000)" in log
- Then start Claude Desktop
OSC Connection Error
- Check that AbletonOSC is loaded
- Verify port 11000 is available
- Check firewall settings
Windows - Check ports:
netstat -ano | findstr "11000 11001"
Windows - Check Ableton log:
Get-Content "$env:USERPROFILE\AppData\Roaming\Ableton\Live *\Preferences\Log.txt" -Tail 50 | Select-String "OSC"
Claude Desktop Issues
- After editing files: Restart Claude Desktop completely (exit from system tray)
- Connection problems: Restart Claude Desktop
API Error (CLI Mode)
- Verify
ANTHROPIC_API_KEYis correctly set - Check API usage limits
Samples Not Found
- Check sample folder paths
- Specify custom paths when initializing
SampleSearchEngine
š License
MIT
š References
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.