Claude DJ MCP
Enables Claude to act as an autonomous radio DJ, generating live-coded music with Strudel, making text-to-speech announcements, and responding to audience requests through a browser UI.
README
Claude DJ MCP
An MCP server that lets Claude act as an autonomous radio DJ using Strudel live-coded music.
Features
- šµ Live-coded music ā Claude generates Strudel patterns in real-time
- šļø DJ announcements ā Text-to-speech commentary (macOS)
- šļø Dynamic tempo control ā Adjust BPM mid-session
- š» Audience requests ā Take song/vibe requests from browser UI
- š Autonomous DJ loop ā Play ā announce ā wait ā adapt ā repeat
Security Notice
ā ļø This project is designed for local development and personal use only.
Important security considerations:
- Local use only ā The HTTP server binds to localhost but has open CORS headers (
Access-Control-Allow-Origin: *) - Code execution ā Claude sends arbitrary Strudel code that is evaluated in the browser without sandboxing
- Command execution ā The
dj_speaktool executes shell commands (macOSsay) with user-controlled input - No authentication ā Anyone with access to localhost can interact with active sessions
- No rate limiting ā Request queue and endpoints are not protected against abuse
Recommendations:
- Only run on trusted machines with trusted Claude instances
- Do not expose the HTTP server to network interfaces beyond localhost
- Do not run in multi-user environments without additional security hardening
- Review the code before use if you have security concerns
Architecture
Claude (MCP client)
ā stdio (JSON-RPC)
ā¼
MCP Server (Node.js)
ā In-memory state: pendingCode, pendingAction, browserState, requestQueue
ā
āā HTTP Server (port 6002, auto-increment if busy)
ā GET / ā HTML page with <strudel-editor> + request bar
ā GET /api/poll ā Browser polls: returns pending code/action
ā POST /api/state ā Browser posts: started, activeCode, error, cps
ā POST /api/request ā User submits song/vibe request from browser UI
ā GET /api/health ā Health check
ā
āā Browser (opened via `open` package)
<strudel-editor> web component (loaded from unpkg CDN)
Polls /api/poll every 1s, executes pending actions
Posts state back via /api/state after each action
Request bar at bottom for user input
Installation
1. Build the MCP server
npm install
npm run build
2. Configure in Claude Code / Claude Desktop
Add to your MCP settings (e.g., ~/.config/claude-code/mcp.json):
{
"mcpServers": {
"claude-dj": {
"command": "node",
"args": ["~/claude-dj-mcp/dist/index.js"]
}
}
}
Usage
Quick start
In Claude Code or Claude Desktop:
Use the claude-dj skill to start a DJ session
Or call tools directly:
Call start_session, then tell me when audio is ready
The DJ Loop
Once the session is started and audio is active:
- Claude plays a pattern ā Calls
play_patternwith Strudel code - Claude announces ā Calls
dj_speakwith DJ commentary - Claude waits ā Calls
wait(30-90)to let the music play - Claude checks requests ā The wait tool returns any pending audience requests
- Claude adapts ā Creates the next pattern based on requests, mood, flow
- Repeat
Audience requests
Users can type requests in the browser UI:
- "something funky"
- "chill lo-fi beats"
- "90s techno"
- "more cowbell"
Claude will acknowledge and incorporate requests into the next patterns.
MCP Tools (9 total)
| Tool | Description |
|---|---|
start_session |
Starts HTTP server and opens browser with Strudel REPL |
play_pattern |
Sends Strudel code to browser for evaluation |
stop_music |
Stops the current pattern |
get_session_state |
Returns browser state (started, activeCode, error, cps) |
set_tempo |
Sets BPM or CPS |
dj_speak |
macOS text-to-speech announcement (fire-and-forget) |
check_requests |
Drains user request queue from browser UI |
wait |
Blocks N seconds, then returns pending requests (core DJ loop tool) |
get_available_sounds |
Returns curated sound list by category |
Strudel Examples
Basic beat
s("bd sd:1 hh sd:2").gain(0.8)
Layered pattern
stack(
s("bd:1 ~ bd:1 ~").gain(0.9),
s("~ sd ~ sd:3").gain(0.7),
s("hh*8").gain(0.4),
note("c2 ~ e2 ~ g2 ~ e2 ~").sound("bass1").gain(0.6)
)
Lo-fi chill
stack(
s("bd ~ [~ bd] ~, ~ sd ~ sd").gain(0.7),
note("<c3 e3 g3 b3>/4").sound("piano").room(0.7).gain(0.3),
s("hh*4").gain(0.2).pan(sine)
).lpf(2000)
Techno
stack(
s("bd*4").gain(0.9),
s("~ hh:2 ~ hh:3").gain(0.5),
s("~ ~ cp ~").room(0.5).gain(0.6),
note("c2 c2 [c2 c3] c2").sound("sawtooth").lpf(400).gain(0.5)
)
Available Sounds
- Drums: bd, sd, hh, oh, cp, rm, cb, lt, mt, ht, cr, rd, perc, tabla
- Synths: sine, square, sawtooth, triangle, supersaw, supersquare
- Instruments: piano, bass1, bass2, gtr, flute, jazz, metal, east, pluck, casio
- Effects: .lpf() .hpf() .delay() .room() .gain() .pan() .crush() .vowel() .phaser() .speed()
Use get_available_sounds tool for the full categorized list with examples.
Mini-Notation Reference
*Nā repeat N times per cycle/Nā spread over N cycles (slow down)~ā rest / silence<a b c>ā alternate each cycle[a b]ā group into one step?ā random chance of playing,ā play in parallel
Development
# Install dependencies
npm install
# Development mode (with hot reload)
npm run dev
# Build
npm run build
# Run manually (stdio mode)
node dist/index.js
File Structure
claude-dj-mcp/
āāā src/
ā āāā index.ts # MCP server entry: tool registrations, main()
ā āāā http-server.ts # HTTP server, state stores, endpoints
ā āāā html-page.ts # HTML template with Strudel REPL
ā āāā logger.ts # stderr-only logger
ā āāā prompts.ts # MCP prompt for DJ workflow
ā āāā sounds.ts # Curated Strudel sound list
āāā claude-dj/
ā āāā SKILL.md # Agent skill definition
āāā package.json
āāā tsconfig.json
āāā README.md
Agent Skills Support
This project includes an Agent Skills definition at claude-dj/SKILL.md. Compatible agents can discover and use the claude-dj skill automatically.
License
AGPL-3.0
Credits
- Strudel ā The live coding environment for algorithmic patterns
- Built with @modelcontextprotocol/sdk
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.