mixxx-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mixxx-mcpload 'Midnight City' to deck 1 and play"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
most LLMs are DJs
Boiler room but it's a datacenter evaporative cooling tower.
Fork of cloudygetty-ai/mixxx-mcp, an MCP server that lets AI agents control Mixxx over a virtual MIDI port.
How it works
Claude ──MCP──▶ python server ──▶ virtual MIDI port "mixxx-mcp"
│ CC messages
▼
Mixxx controller script (JS)
engine.setValue(...)That's the write path, and it's the only path. Upstream also promised a
read path (the Mixxx JS posting state back out), but Mixxx's embedded JS
engine has no XMLHttpRequest and no sockets, so it can never work — the
state tools (get_deck_state etc.) always come back empty. The agent reads
Mixxx's log file instead (every command echoes a [mixxx-mcp] SET ...
line, and track loads show up as analyzer lines) plus Mixxx's SQLite
library DB for titles, BPMs, and durations. The log flushes minutes late,
so the agent mixes on wall-clock math and confirms after the fact. Flying
the decks on log-tail and SQL is half the fun.
Related MCP server: waveform-MCP
What's different from upstream
mixxx-mcp.js: top-levelconst→var+ explicitglobalThisexport (Mixxx's QJSEngine can't see top-level const), andsetTimeout→engine.beginTimer(there is no setTimeout in Mixxx JS).mixxx-mcp.midi.xml: regenerated so all 128 CCs script-bind toMixxxMCP.handleCC— the original bound control names directly, which Mixxx rejects as an invalid mapping and silently disables.Track-loading controls added (CCs 117–123): library cursor next/prev and load-to-deck. This is what lets the agent choose its own tracks.
main.pylogs to stderr (it was corrupting the MCP stdio transport).The HTTP state server (dead weight, see above) accepts
MIXXX_MCP_STATE_PORTso a second instance doesn't crash on a busy port..claude/skills/run-mixxx-mcp/: an agent skill +driver.pyharness — bring-up checks, deploy, a log watcher, library queries, a smoke test, and a standalone MCP client REPL for driving Mixxx with no registration at all.scripts/energy.sh: ffmpeg RMS energy profiler (~1.3 s per track) that finds where a track's intro ends and its outro begins, so transitions land while the track still has life in it, not at a fixed "70 seconds before the end."
Quickstart (macOS)
Tested on an Intel iMac with Mixxx 2.5.6 from the official DMG.
python3.12 -m venv .venv
.venv/bin/pip install mcp python-osc python-rtmidi
# register with Claude Code (user scope)
claude mcp add mixxx-mcp -s user -- $PWD/.venv/bin/python $PWD/main.py
# copy the controller mapping into Mixxx's (sandboxed) controllers dir
.venv/bin/python .claude/skills/run-mixxx-mcp/driver.py deployBring-up order matters:
Start the MCP server first — it creates the MIDI port. (A Claude Code session does this for you.)
Then start Mixxx.
Then — every time Mixxx or the server restarts — untick and re-tick Enabled under Preferences ▸ Controllers ▸ mixxx-mcp. Mixxx never reattaches on its own; commands sent to a stale port report success and vanish into the void. This is the number-one gotcha.
Verify:
driver.py status, send a control, then look for the SET line withdriver.py log(patience — the log buffers).
Tools
Tool | Description |
| Transport |
| Enable sync (can only enable — disable via |
| Channel fader 0.0–1.0 |
| Crossfader −1.0–1.0 |
| EQ bands 0.0–4.0 |
| Trim 0.0–4.0 |
| Pitch / tempo nudge |
| Beat loops |
| Hotcues 1–8 |
| Jump ±N beats |
| Effects |
| Raw escape hatch — anything in the Mixxx controls reference |
| Always empty (see above) — read the log instead |
Credits
Forked from cloudygetty-ai/mixxx-mcp Mixxx
License
All rights reserved. You must only use this in violation of my intellectual property rights.
Related MCP Connectors
MCP server for Producer/Riffusion AI music generation
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for building and testing AI agents with multi-model experimentation and insights.
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that connects AI assistants to FL Studio for music production via Virtual MIDI. It enables users to control transport, manage the mixer, write notes, and manipulate plugin parameters through natural language.1MIT
- AlicenseCqualityDmaintenanceAn MCP server that gives an LLM agent control over Tracktion Waveform, enabling it to compose, mix, and render songs through natural language commands.1295MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that enables AI agents to read and edit Ableton Live sets, including tracks, clips, MIDI notes, devices, and scenes.1-
- AlicenseNot gradedqualityFmaintenanceMCP server for Mixxx DJ software that enables AI agents to control transport, mixing, EQ, loops, hotcues, and effects in real time through MIDI and OSC.MIT