ableton-live-mcp
Local MCP server for inspecting and controlling Ableton Live through a local HTTP bridge. Enables LLMs to perform production workflows like MIDI import, track editing, mixing, mastering, and export.
README
Ableton Live MCP
Local MCP stdio server for inspecting and controlling Ableton Live through a local bridge.
Current package version: 0.1.0.
This repo does not assume a specific Ableton integration layer. The MCP server speaks JSON-RPC over stdio to an MCP client, then forwards tool calls to a local HTTP bridge that you can implement with Max for Live, Ableton's Extensions SDK, a Python Remote Script helper, or another Live automation layer.
Product Workflows
Start with docs/product-workflows.md for end-to-end setup, MIDI import, instrument assignment, arrangement, mixing, mastering, validation, and export workflows. The guide also documents safe operating rules for open user sets, destructive commands, explicit export approval, and unsupported bridge operations.
Tools
Read and inspect:
ableton_get_statusableton_get_projectableton_get_arrangementableton_list_pluginsableton_search_browserableton_diagnose_pluginsableton_get_production_reportableton_diagnose_playbackableton_get_metersableton_list_returnsableton_list_busesableton_get_clip_notesableton_launch_clipableton_launch_sceneableton_get_device_parametersableton_analyze_audioableton_analyze_mixableton_get_bridge_observabilityableton_evaluate_action_riskableton_list_risk_policyableton_match_preset_intentableton_list_workflow_plansableton_get_workflow_plan
Project, transport, track, and clip editing:
ableton_create_snapshotableton_rollback_snapshotableton_set_tempoableton_save_projectableton_set_signatureableton_start_transportableton_stop_transportableton_create_midi_trackableton_duplicate_trackableton_freeze_trackableton_flatten_trackableton_modify_trackableton_create_midi_clipableton_consolidate_clipableton_delete_clipableton_humanize_clipableton_quantize_clipableton_apply_grooveableton_import_midi
Devices, routing, returns, arrangement, mastering, and export:
ableton_load_deviceableton_load_master_deviceableton_select_vst_for_midiableton_set_device_parameterableton_reorder_deviceableton_delete_deviceableton_set_automationableton_create_return_trackableton_modify_returnableton_delete_return_trackableton_modify_masterableton_apply_mastering_chainableton_analyze_and_apply_masteringableton_export_renderableton_bounce_tracksableton_insert_arrangement_clipableton_add_locator
Production Workflow
For meaningful LLM control, the recommended sequence is:
ableton_get_status,ableton_get_project,ableton_get_arrangement, andableton_get_production_reportto inspect transport, tracks, devices, clips, locators, routing, meters, returns, and mixer state.ableton_create_snapshotbefore broad edits. For real user sets, also save or duplicate the.alsfile before destructive, export, or mastering work.ableton_list_pluginsandableton_search_browserso the LLM can choose available instruments, effects, presets, samples, racks, grooves, plugins, and Max devices. Useableton_match_preset_intentfirst when the request is musical, such as realistic violin, concert piano, classical guitar, flute, or concert hall mastering.ableton_import_midi,ableton_create_midi_clip, or both.ableton_humanize_clip,ableton_quantize_clip, orableton_apply_groovefor controlled MIDI timing edits.ableton_select_vst_for_midi,ableton_load_device, orableton_load_master_deviceto assign sounds and processing.ableton_duplicate_track,ableton_consolidate_clip,ableton_insert_arrangement_clip,ableton_add_locator,ableton_modify_track,ableton_modify_return,ableton_modify_master,ableton_set_device_parameter, andableton_set_automationfor arrangement and mix moves.ableton_freeze_trackandableton_flatten_trackwhen committing tracks to audio is supported by the active bridge.ableton_apply_mastering_chainfor master bus preparation.ableton_export_render,ableton_bounce_tracks, andableton_analyze_audio, andableton_analyze_mixfor approved export, stem, and audio-validation workflows. File analysis runs locally in the MCP process and does not depend on Ableton's Remote Script meters.
Risk tiers and default blocking recommendations are documented in
docs/risk-policy.md and exposed through
ableton_evaluate_action_risk and ableton_list_risk_policy. High-level
plan-only workflows are exposed through ableton_list_workflow_plans and
ableton_get_workflow_plan. Render/export support is documented in
docs/render-export-plan.md; the current Python
Remote Script bridge returns explicit 501 unsupported responses for
render-backed routes instead of simulating Live renders.
Quick Start
From npm:
npx -y @jterrats/ableton-live-mcp --help
Install the bundled Ableton Remote Script:
npx -y @jterrats/ableton-live-mcp install-remote-script --app-path "/Applications/Ableton Live 12 Lite.app"
Then restart Ableton Live, select AbletonMcpBridge in Preferences -> Link,
Tempo & MIDI, and verify the installation:
npx -y @jterrats/ableton-live-mcp doctor --app-path "/Applications/Ableton Live 12 Lite.app"
Run the MCP stdio server:
npx -y @jterrats/ableton-live-mcp
Local development from this repo:
npm run smoke
Run the server:
npm start
Run the deterministic local development bridge:
npm run bridge
For dry-run development without Ableton:
ABLETON_MCP_DRY_RUN=1 npm start
MCP Client Config
Use this shape in an MCP client that supports stdio servers:
{
"mcpServers": {
"ableton-live": {
"command": "npx",
"args": ["-y", "@jterrats/ableton-live-mcp"],
"env": {
"ABLETON_BRIDGE_URL": "http://127.0.0.1:9789"
}
}
}
}
Set ABLETON_MCP_DRY_RUN=1 in env when you want the tools to return the
intended bridge calls without touching Ableton.
Bridge
The local bridge must listen on ABLETON_BRIDGE_URL and implement the HTTP
contract in docs/ableton-bridge-contract.md.
This repo includes a deterministic development bridge for local MCP integration
tests. It listens on 127.0.0.1:9789 by default, or on ABLETON_BRIDGE_PORT
when configured, and implements the product workflow surface without requiring
Ableton Live.
For the real Ableton Live adapter, install the Python Remote Script documented
in docs/ableton-python-remote-script.md.
That script runs inside Ableton and exposes the same bridge endpoints on
127.0.0.1:9789.
On this machine Ableton Live was detected at /Applications/Ableton Live 12 Lite.app.
Install the bundled Remote Script with:
npx -y @jterrats/ableton-live-mcp install-remote-script --app-path "/Applications/Ableton Live 12 Lite.app"
If macOS rejects writes to /Applications with Operation not permitted, close
Ableton and retry with sudo -E npx -y @jterrats/ableton-live-mcp install-remote-script --app-path "/Applications/Ableton Live 12 Lite.app".
If sudo is still blocked, grant App Management or Full Disk Access to your
terminal app in System Settings -> Privacy & Security, then rerun the installer.
Finder manual copy with authentication is also valid.
Release readiness checks are documented in docs/release-checklist.md.
Keep the bridge local-only. Do not bind it to a public network interface unless you add authentication and understand the risk of remote DAW control.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。