Bridge between Ableton Live and AI. Inspect, analyze audio, and control mixing via MCP.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
[!IMPORTANT] For AI Agents: Please read AGENTS.md for detailed technical context and protocol specifications before working on this project.
Ableton for AI is the bridge between your DAW and AI models. It makes Ableton projects hearable and visible to AI models by implementing the Model Context Protocol (MCP) and exporting detailed project data.
Connect Ableton Live directly to MCP-capable AI clients (like Claude Desktop, Cursor, or Cline). The AI can inspect, analyze, and even modify your project in real-time.
Included Tools:
get_overview: SESSION DISCOVERY. Provides tempo, locators, and a list of all tracks with their current mixer state (volume, panning, etc.).get_track: TRACK INSPECTION. Comprehensive data for a single track: metadata, complete device chain, and all device parameters (with UI-readable strings).get_tracks: BULK TRACK INSPECTION. Query full data for a range of tracks in a single parallelized call.analyze_stems: DEEP AUDIO ANALYSIS. Triggers generation of audio summaries (.summary.json) and spectrograms (.spectrogram.webp) for all tracks.set_track_volume / set_track_panning: MIXER CONTROL. Remotely adjust track faders and panning.set_device_parameter: REMOTE CONTROL. Precisely adjust any parameter of any device in the project.Included Resources:
ableton://stems/{track_name}/summary: AUDIO SUMMARY. Compact analysis (JSON) containing LUFS, Peak, RMS, 10ms-frames, detected transients, and a legend field.ableton://stems/{track_name}/spectrogram: VISUAL ANALYSIS. Log-frequency spectrogram image (WebP) for visual frequency inspection.ableton://stems/available/summaries: Discovery resource for all tracks with available audio summaries.ableton://stems/available/spectrograms: Discovery resource for all tracks with available spectrograms.This project relies on AbletonOSC to communicate with Ableton Live.
uv lets you run the server directly without installing anything globally:
Requires Python 3.11+ (python.org or brew install python):
Add the server to your MCP client configuration (e.g. Claude Desktop, Cursor, or Cline).
[!NOTE]
STEMS_SOURCE_DIRmust point to the folder where your exported audio stems are located. You need to export stems manually from Ableton Live (e.g. via "Export Audio/Video" with individual tracks selected), as there is currently no OSC API for triggering exports. The audio analysis tools (analyze_stems) will look for files in this directory.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonRestart your MCP client after saving the config.
Once connected, you can ask the AI about your project state. The AI will use the included tools and resources to fetch data directly from Ableton.
For audio analysis: Export your stems from Ableton Live first (e.g. via File β Export Audio/Video with individual tracks selected) into your configured STEMS_SOURCE_DIR. This step must be done manually, as there is no API for triggering exports.
For complex tasks (e.g. mix feedback): Give the chatbot context about your project. A good starting prompt includes genre, goal, and where your exported stems start (beat or locator). See agent-templates/mix-engineer.md for a ready-to-use prompt template.
Example prompts:
You can customize the server behavior by setting environment variables or editing config.py (when running from source).
| Variable | Default Value | Description |
|---|---|---|
LOG_LEVEL | "INFO" | Logging verbosity (INFO or DEBUG). |
BASE_OUT_DIR | auto | Where analysis output is stored. Defaults to {STEMS_SOURCE_DIR}/ableton-for-ai-out if stems dir is set, else ~/.ableton-for-ai/out. Override with an absolute path. |
STEMS_SOURCE_DIR | "./stems" | Path where exported stems are located. |
PREFERRED_AUDIO_FORMAT | "mp3" | Audio format to analyze (mp3 or wav). |
SPECTROGRAM_QUALITY | 90 | Quality of WebP spectrograms (1-100). |
RELEVANT_DEVICE_CLASSES | {"Eq8", "Compressor", ...} | List of Ableton device classes to include in extraction. |
RELEVANT_DEVICE_NAMES | {"Pro-Q 4"} | List of specific plugin names to include. |
In config.py, add the exact name of the plugin as it appears in Ableton to RELEVANT_DEVICE_NAMES.
Options.txt Trick)By default, Ableton Live only exposes the parameters of a third-party plugin, if the overall parameter number threshold (_PluginAutoPopulateThreshold) is below 64 ( default), see here. You can change this to 128 and hope that your favorite custom VSTs will be exposed. If they are still not exposed, because there are too many (e.g. Fab Filter Pro Q 4), you have to configure the parameters within ableton.
Force Ableton to automatically expose parameters by adding -_PluginAutoPopulateThreshold=128 to your Options.txt:
~/Library/Preferences/Ableton/Live [Version]/Options.txt%AppData%\Ableton\Live [Version]\Preferences\Options.txtTo quickly set this up on a Mac, you can use these commands (replace [Version] with your actual Live version, e.g., 12.3.6):
OR open the file in a text editor and add the setting manually, e.g.
This method is ideal for LLMs that don't support MCP directly (like ChatGPT or the Claude Web Interface). It runs the same analysis pipeline locally and exports the results as files you can upload to any chatbot.
Full audio analysis (summaries + spectrograms + full analysis JSONs):
Extract Ableton project metadata only (tracks, devices, parameters):
Full pipeline (audio analysis AND project data extraction):
[!NOTE] The OSC daemon starts automatically β no need to launch it manually.
The results will be stored in the ./out directory, organized into subfolders:
./out/project/: Contains the Ableton project JSON file../out/summaries/: Contains compressed audio analysis JSONs (optimized for AI)../out/spectrograms/: Contains spectrogram WebP images for each stem../out/analyses/: Contains full high-resolution analysis JSONs.STEMS_SOURCE_DIR.ableton-for-ai-cli analyze_stems to generate analysis files.out folder into the chatbot (spectrograms .webp + analysis .json).No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/ableton-for-ai)<a href="https://allmcps.com/mcp/ableton-for-ai"><img src="https://allmcps.com/api/badge/ableton-for-ai?style=directory" alt="Ableton for AI on AllMCPs" /></a>