Pantani/ableton-mind

🎨 Art & Culture
0 Views
0 Installs

πŸ“‡ 🏠 🍎 πŸͺŸ - Control Ableton Live from Claude, Cursor or Codex through a local Remote Script bridge: inspect sets, create tracks, scenes and clips, load devices, apply music recipes, and verify changes against Live state.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "pantani-ableton-mind": {
      "command": "npx",
      "args": [
        "-y",
        "pantani-ableton-mind"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

ableton-mind

ableton-mind MCP server

Definitive MCP (Model Context Protocol) server for Ableton Live. Exposes the full Live Object Model to LLMs (Claude, Cursor, etc.) with an embedded native device knowledge base, declarative music recipes, an integrated verify loop, and reactive listeners.

Status: alpha / v0.1.1 published β€” core smoke passed against Ableton Live 12.4.1 on macOS and package validation is green. npm, GitHub Release .mcpb, and the MCP Registry are live. Glama has a listing, but its hosted release/deploy must be published separately from the Glama admin build flow; Smithery metadata is present and may lag indexing. API unstable. Don't use in production yet.

Phase 8 status: slice 1 delivers read-only Max for Live/plug-in introspection and Link/remote status discovery. Deeper M4L control, VST3 sidecars, remote DAW integration and mobile companion work remain pending.

πŸ“š Full documentation: pantani.github.io/ableton-mind/

Architecture (3 layers)

Claude/Cursor ──MCP/stdio──▢ ableton-mind (TS, Node 20+) ──TCP NDJSON JSON-RPC──▢ Remote Script (Python, inside Live)
  • src/ β€” TypeScript MCP server. Tools, resources, prompts, TCP client, recipe runner, knowledge loader.
  • live/AbletonMind/ β€” Python Remote Script. TCP server on port 9876, dispatches JSON-RPC to LiveAPI.
  • recipes/, src/knowledge/ β€” embedded JSON (drum kits, basslines, racks, device schemas).

Full spec in PLAN.md. Frozen contracts in _workspace/contracts/.

Highlights vs. existing MCP/OSC servers

Capabilityahujasid/ableton-mcpAbletonOSC + MCP wrapperableton-mind
MCP tools22~3036
LOM coverage~10%~95%~100%
Knowledge basenonenone55 devices, scales, drum kits
Recipesnonenone14 across 7 categories
Verify loopnonoyes, integrated (session_snapshot/diff)
Render previewnonoyes (snapshot now, bounce planned)
Reactive listeners β†’ MCP notificationsnopartial (OSC)yes (7 events live)
Transactions (undo unitary)nonoyes
Automation envelopesnopartialcomplete (linear / hold)
Push 1/2/3 controlnonoyes (pad/button/mode LEDs)
Dockernonoyes
.mcpb 1-clicknonoyes
Doctor CLInonoyes

Requirements

  • Node 20+
  • Ableton Live 12 (priority; Live 11 supported)
  • macOS (primary), Windows (Phase 1 final)

Setup (source install)

npm install
npm run typecheck
npm run lint
npm run test
npm run build

Install Remote Script (Python bridge)

Dev mode (symlink):

node scripts/install-remote-script.mjs           # creates symlink
node scripts/install-remote-script.mjs --check   # status only
node scripts/install-remote-script.mjs --copy    # full copy (CI / snapshot)

Manual:

  • macOS: copy live/AbletonMind/ to ~/Music/Ableton/User Library/Remote Scripts/AbletonMind/
  • Windows: copy to ~/Documents/Ableton/User Library/Remote Scripts/AbletonMind/

Then Live β†’ Preferences β†’ Link/Tempo/MIDI β†’ Control Surface β†’ AbletonMind.

Smoke test: docs/smoke-test.md.

Run the MCP server

npm run build
node dist/index.js

Env vars:

VarDefault
ABLETON_MIND_HOST127.0.0.1Python bridge host
ABLETON_MIND_PORT9876Bridge TCP port
ABLETON_MIND_TIMEOUT_MS5000Per-request timeout
ABLETON_MIND_MAX_FRAME_BYTES1048576Max incoming JSON-RPC frame
ABLETON_MIND_MAX_PENDING_REQUESTS128Max in-flight JSON-RPC calls
ABLETON_MIND_LOG_LEVELinfodebug | info | warn | error

Local copilot

Run a local LLM against a curated subset of the same Ableton tools:

ollama pull qwen2.5:3b      # optional; the UI can pull too
node dist/index.js chat     # opens http://127.0.0.1:4142
node dist/index.js ask "What is in this set?"

The default tier is read-only (safe). Use --write for simple changes or --creative for recipes/browser load.

VarDefault
ABLETON_MIND_LLM_BASE_URLhttp://127.0.0.1:11434/v1OpenAI-compatible endpoint
ABLETON_MIND_LLM_MODELqwen2.5:3bLocal model id
ABLETON_MIND_LLM_TIERsafesafe | standard | creative
ABLETON_MIND_CHAT_PORT4142Browser UI port

See Local copilot.

Doctor CLI

npx ableton-mind-doctor

Checks Node version, Remote Script install, bridge port, knowledge base integrity, recipes.

Distribution

  • npm: npm install -g ableton-mind.
  • Claude Code plugin marketplace: claude plugin marketplace add Pantani/ableton-mind, then claude plugin install ableton-mind@ableton-mind.
  • Claude Desktop one-click: download ableton-mind-0.1.1.mcpb from the v0.1.1 GitHub Release.
  • MCP Registry: io.github.Pantani/ableton-mind is active in the official registry.
  • Glama: listed at glama.ai/mcp/servers/Pantani/ableton-mind; hosted release is separate from the GitHub Release and still requires the Glama admin deploy + Make Release flow.
  • Source: npm ci && npm run build && npm run install:remote-script.
  • Docker: docker build -t ableton-mind . && docker run --rm -i --network host ableton-mind.
  • Smithery: smithery.yaml is ready for listing/indexing.

Roadmap

See PLAN.md Β§12 and _workspace/PROGRESS.md.

PhaseStatus
0 β€” Spikeβœ… real smoke pass
1 β€” ahujasid parityβœ… 22/22
2 β€” Listenersβœ… 7 events
3 β€” Knowledgeβœ… 55 devices
4 β€” Automation envelopesβœ…
5 β€” Preview/verifyβœ… snapshot+diff (bounce planned)
6 β€” Pushβœ… pad/button/mode LEDs
7 β€” Distributionβœ… DXT/Docker/Smithery/CI/release ready
8 β€” Long tailπŸ”΅ slice 1 delivered: read-only M4L/plug-in introspection + Link/remote status discovery; deeper M4L/VST3/remote DAW/mobile work pending

License

MIT.

Related MCP Servers

8enSmith/mcp-open-library

πŸ“‡ ☁️ - A MCP server for the Open Library API that enables AI assistants to search for book information.

🎨 Art & Culture0 views
abhiemj/manim-mcp-server

🐍 🏠 πŸͺŸ 🐧 - A local MCP server that generates animations using Manim.

🎨 Art & Culture0 views
AceDataCloud/MCPFlux

🐍 ☁️ - Flux AI image generation and editing (Black Forest Labs) via Ace Data Cloud API.

🎨 Art & Culture0 views
AceDataCloud/MCPNanoBanana

🐍 ☁️ - NanoBanana AI image generation and editing with virtual try-on and product placement in realistic scenes.

🎨 Art & Culture0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.