claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// MCP Servers

AbletonBridge

353 tools connecting LLM's to Ableton Live, discord: https://discord.gg/xrk3wpwxwT

// MCP Servers[ api ][ desktop ][ web ][ mobile ][ claude ]#claude#ableton#claude-ai#claude-code#lom#m4l#maxforlive#node-js#mcp-serversNOASSERTION$open-sourceupdated 11 days ago
Actively maintained
93/100
last commit 30 days ago
last release 5 months ago
releases 1
open issues 2
// install
{
  "mcpServers": {
    "AbletonBridge": {
      "command": "npx",
      "args": ["-y", "https://github.com/hidingwill/AbletonBridge"]
    }
  }
}

AbletonBridge

359 tools connecting Claude AI to Ableton Live (340 core + 19 optional ElevenLabs voice/SFX tools)

AbletonBridge gives Claude direct control over your Ableton Live session through the Model Context Protocol. Create tracks, write MIDI, design sounds, mix, automate, browse instruments, snapshot presets, and navigate deep into device chains and modulation matrices — all through natural language conversation.


What It Can Do

Music Creation"Create a MIDI track, load Operator, and write an 8-bar bass line in E minor" · "Build a Metro-Boomin-style 808 beat using grid notation" · "Make a 4-bar jazz chord progression — Cm7, Fm7, Dm7b5, G7 — with voice leading"

Sound Design"Load Wavetable and design a warm detuned supersaw pad" · "Snapshot the current preset, tweak it brighter, then morph back 50%" · "Set the Compressor side-chain input to the kick drum track"

Deep Device Access (M4L) — "Show me what's inside the Drum Rack — all chains and nested devices" · "Set Wavetable's LFO1 modulation to filter cutoff at 0.6" · "Analyze the full spectrum of track 5 using cross-track routing"

Mixing & Arrangement"Create a filter sweep automation from 0.2 to 0.9 over 8 bars" · "Create a reverb return track and send drums to it at 30%" · "Get arrangement clips on all tracks and give me a structure overview"

Creative Generation"Generate a Euclidean rhythm with 16 steps and 5 pulses" · "Write a I-vi-IV-V chord progression with drop2 voicings" · "Create a trap drum pattern, 2 bars, with swing"

Session Management"Full overview of all tracks — names, devices, volumes" · "Search the browser for 'vocoder' and load it on the master track" · "Snapshot every device on tracks 0-3 as 'verse preset'"


Architecture

Claude AI  <--MCP-->  MCP Server  <--TCP:9877-->  Ableton Remote Script
                          |            <--UDP:9882-->  (real-time params)
                          +---<--UDP/OSC:9878/9879-->  M4L Bridge (optional)
                          +---<--HTTP:9880-->  Web Status Dashboard

MCP Server (modular architecture):
  server.py          — slim orchestrator (~300 lines)
  state.py           — centralized global state + locks
  constants.py       — command tiers, browser categories
  validation.py      — input validation + size limits
  connections/       — ableton.py (TCP), m4l.py (UDP/OSC)
  cache/             — browser.py (cache + disk persistence)
  dashboard/         — html.py, server.py (Starlette)
  tools/             — 15 modules (340 tools)
  prompts.py         — 4 MCP prompt templates
  instructions.py    — server instructions (cross-tool guidance)
  • Remote Script (TCP+UDP) — runs inside Ableton as a Control Surface. TCP:9877 for commands, UDP:9882 for real-time parameter updates at 50+ Hz.
  • M4L Bridge (UDP/OSC) — optional Audio Effect device for hidden parameters, rack chain internals, audio analysis, modulation matrices, event monitoring, and more.
  • ElevenLabs Server (optional) — 19 tools for AI voice generation, sound effects, voice cloning. Requires ELEVENLABS_API_KEY.
  • MCP Server Instructions — cross-tool guidance injected into the AI's context on every connection. Covers workflow sequencing, compound tool preferences, M4L fallback logic, and input constraints.
  • MCP Resourcesableton://session, ableton://tracks, ableton://capabilities for direct data access.
  • MCP Prompts — guided workflows: create-beat, mix-track, sound-design, arrange-section.
  • Web Dashboard — real-time status, tool metrics, and server logs at http://127.0.0.1:9880.

Tool Overview (340 core + 19 optional = 359 total)

AreaExamplesCount
Session & Transporttempo, play/record, capture, Link, punch, playback position~53
Tracks & Mixingcreate/rename tracks, routing, monitoring, groups, implicit arm~29
Clips & Scenescreate/edit clips, follow actions, warp markers~54
Scenescreate/delete/duplicate, fire, name, color, tempo, follow actions~10
Mixerunified set_mixer, batch_set_mixer, sends, crossfader~13
Devices & Parametersload/configure, rack chains, rack macros, sidechain, plugin info~45
Browser & Presetssearch/load instruments, presets, device presets~12
Automationclip/track automation, envelopes, curves~12
Arrangementarrangement clips, time editing, composition analysis~17
Creative GenerationEuclidean rhythms, chords, drums, arpeggios, bass, transforms~17
Deep Access (M4L)hidden params, chain internals, audio analysis, note surgery~40
Snapshots & Macrossnapshot/restore, morph, macros, parameter maps~18
Audio Analysisaudio clip info, track meters, input meters~3
Grid NotationASCII drum/melodic pattern I/O~2
Compound Workflowscreate instrument/drum track, batch mixer, effect chains~11
Core subtotal340
ElevenLabs (optional)voice generation, SFX, cloning, transcription19
Total359

See CHANGELOG.md for the complete per-tool breakdown.


Stability & Reliability

AbletonBridge is built to handle real-world sessions without crashing Ableton:

  • Chunked async LiveAPI — large device discovery split into 4-param chunks with 50ms delays
  • Chunked response protocol — large responses split, base64-encoded, reassembled automatically
  • URL-safe base64A-Z a-z 0-9 - _ only; avoids Max OSC routing conflicts
  • Deferred processing — all M4L outlets use Task.schedule() to avoid blocking audio/UI thread
  • LiveAPI cursor reusegoto() reuses 3 cursors instead of creating ~193 new instances
  • Fire-and-forget writes — no post-set readback (the #1 crash pattern)
  • Command-specific timeouts — per-command timeouts (e.g., freeze_track → 60s, load_instrument → 30s) instead of fixed 10s/15s
  • Socket drain — clears stale UDP responses before each command
  • Singleton guard — exclusive port lock prevents duplicate server instances
  • Disk-persisted cache — 6,400+ browser items in gzip; instant startup (~50ms)
  • Auto-reconnect — exponential backoff for TCP and UDP connections
  • Tiered command delays — 3-tier system (0ms/10ms/20ms) eliminates unnecessary waits for property setters
  • Async tool handlers — all tools run via asyncio.to_thread(), preventing sync I/O from blocking the event loop
  • Concurrency control — async semaphore serializes tool dispatch; threading locks protect TCP and UDP sockets from corruption
  • Tool execution timeout — 120s hard timeout prevents stuck tools from blocking the entire pipeline
  • Bounded thread pool — explicit 8-worker limit prevents resource exhaustion during rapid tool call bursts
  • Standardized responses — all 340 tools return consistent tool_success()/tool_error() JSON envelopes via decorator
  • Chunk reassembly hardening — duplicate detection, progress logging, missing chunk index reporting
  • Parameter resolution cache — 500-entry FIFO cache for brute-force display→value resolution (O(1) after first call)
  • Effect chain persistence — saved templates survive server restarts via ~/.ableton-bridge/chain_templates.json
  • 214 tests — 11 test files covering connections, M4L, cache, creative tools, workflows, and validation edge cases

Flexibility

  • Any MCP client — Claude Desktop, Cursor, Claude Code, or any MCP-compatible tool
  • 300 tools without Max for Live — full session control via TCP/UDP Remote Script; M4L is optional
  • +40 deep-access tools with M4L — hidden parameters, rack internals, audio analysis, event monitoring
  • +19 optional ElevenLabs tools — AI voice generation, sound effects, cloning, transcription
  • Ableton Live 10, 11, and 12 — graceful API fallbacks for version-specific features
  • Cross-platform — Windows and macOS
  • Quick setupuv run for server, one folder for Remote Script, one M4L device for bridge

Version

v4.0.0 — see CHANGELOG.md for full release history.


Optional: ElevenLabs Voice & SFX Server

19 tools for AI voice generation, sound effects, voice cloning, and transcription. Generated audio saves to your Ableton User Library.

See installation_process.txt for setup instructions, or add to your MCP config:

{
  "elevenlabs": {
    "command": "uv",
    "args": ["run", "elevenlabs-mcp"],
    "env": { "ELEVENLABS_API_KEY": "your_key_here" }
  }
}

// compatibility

Platformsapi, desktop, web, mobile
Operating systems
AI compatibilityclaude
LicenseNOASSERTION
Pricingopen-source
LanguagePython

// faq

What is AbletonBridge?

353 tools connecting LLM's to Ableton Live, discord: https://discord.gg/xrk3wpwxwT. It is open-source on GitHub.

Is AbletonBridge free to use?

AbletonBridge is open-source under the NOASSERTION license, so it is free to use.

What category does AbletonBridge belong to?

AbletonBridge is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

0 views
43 stars
unclaimed
updated 11 days ago

// embed badge

AbletonBridge on Claudeers
[![Claudeers](https://claudeers.com/api/badge/abletonbridge.svg)](https://claudeers.com/abletonbridge)

// retro hit counter

AbletonBridge hit counter
[![Hits](https://claudeers.com/api/counter/abletonbridge.svg)](https://claudeers.com/abletonbridge)

// reviews

// guestbook

0/500

// related in MCP Servers

🔓

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete…

// mcp-serversf/HTML164,687NOASSERTION[ claude ]
🔓

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

// mcp-serversfarion1231/Rust112,854MIT[ claude ]
🔓

An open-source AI agent that brings the power of Gemini directly into your terminal.

// mcp-serversgoogle-gemini/TypeScript105,729Apache-2.0[ claude ]
🔓

A collection of MCP servers.

// mcp-serverspunkpeye/90,251MIT[ claude ]
→ see how AbletonBridge connects across the ecosystem