npm talkback-mcpstdioupdated 5mo ago
Chat with your Ableton session in natural language. Go deeper in your mix, make it sound like it does in your head, and finally understand compression... jk no one can teach you that.
What can you do with talkback?
talkback mcp
Chat with your Ableton session in natural language. Go deeper in your mix, make it sound like it does in your head, and finally understand compression... jk no one can teach you that.
Talkback is an MCP server and Max for Live device that gives AI assistants real-time access to your Ableton Live session โ read tracks, adjust parameters, analyze your mix, and get spectral snapshots, all through conversation.
talkback.createwcare.com ย ยทย Docs ย ยทย Changelog
How it works
Ableton Live โ M4L Bridge โ WebSocket โ MCP Server โ Claude / Cursor / etc.
- talkback bridge โ a Max for Live device on your master track that reads the Live Object Model and streams session data over WebSocket
- talkback-mcp (this package) โ an MCP server that exposes your session as tools any LLM can use
Quick start
The fastest way to get set up โ installs the MCP server and configures Claude Desktop automatically:
curl -fsSL https://talkback.createwcare.com/install.sh | bash
Already in an AI agent? Let it set things up for you:
npx skills add jmedure/talkback-mcp
Then ask your agent: "Help me set up talkback"
Requires Node.js 18+. See the full setup guide for more options.
1. Install the Max for Live device
Download talkback-bridge (latest) and drop it onto your master track in Ableton. Make sure the device is toggled on.
2. Add the MCP server
Talkback requires a desktop MCP client โ it runs locally on your machine and connects to Ableton over WebSocket. It does not work with claude.ai in the browser (web chat doesn't support local MCP servers yet).
Download Claude Desktop, then add to your config:
~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
%APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": ["-y", "talkback-mcp"],
"env": { "WS_PORT": "8765" }
}
}
}
Restart Claude Desktop after saving.
Using nvm or fnm? Claude Desktop doesn't load your shell profile, so it may pick up an old system Node. Use the full path to
npxinstead โ runwhich npxin Terminal, then set that as"command"in the config above. See troubleshooting for details.
claude mcp add --transport stdio talkback-mcp -- npx -y talkback-mcp
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": ["-y", "talkback-mcp"],
"env": { "WS_PORT": "8765" }
}
}
}
Point your client at npx -y talkback-mcp as the server command with WS_PORT=8765 as an environment variable.
Or use add-mcp to auto-configure all your installed agents:
npx add-mcp "npx -y talkback-mcp"
3. Start chatting
Open your LLM and start asking about your session:
- "What's going on in my session?"
- "My bass sounds muddy, can you help?"
- "Cut 3 dB at 300 Hz on the vocal EQ"
- "Does my mix have any obvious problems?"
Your LLM will ask for approval before making any parameter changes. Undo always works.
Tools
| Tool | What it does |
|---|---|
get_session_context |
Reads your full session โ tracks, volumes, panning, mutes, sends, devices, routing |
get_track_details |
Deep-dives a single track with every device parameter in human-readable units |
get_spectral_snapshot |
Captures ~2s of live audio from master bus with peak/RMS per frequency band |
get_plugin_library |
Lists all installed AU and VST3 plugins on your system |
analyze_mix |
Runs heuristic checks for frequency buildup, dynamics, headroom, and routing issues |
set_device_parameter |
Changes a device parameter using human-readable units (dB, ms, Hz, etc.) |
toggle_device_bypass |
Enables or bypasses a device for A/B comparison |
create_group_track |
Creates a new group track containing specified tracks |
set_track_routing |
Changes a track's output routing to another track or bus |
get_bridge_health |
Returns bridge performance metrics from the M4L device |
Requirements
- Ableton Live 11+ with Max for Live
- Node.js 18+
- A desktop MCP client โ Claude Desktop (recommended), Claude Code, Cursor, or similar
Environment variables
| Variable | Default | Description |
|---|---|---|
WS_PORT |
8765 |
WebSocket port for bridge connection |
License
PolyForm Shield 1.0.0 โ free to use, modify, and distribute. You may not use this software to build a competing product.
Install
Add talkback to your client. Pick the one you use.
claude mcp add talkback-mcp -- npx -y talkback-mcpcodex mcp add talkback-mcp -- npx -y talkback-mcpamp mcp add talkback-mcp -- npx -y talkback-mcp{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": [
"-y",
"talkback-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": [
"-y",
"talkback-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"talkback-mcp","command":"npx","args":["-y","talkback-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": [
"-y",
"talkback-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": [
"-y",
"talkback-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"talkback-mcp": {
"command": "npx",
"args": [
"-y",
"talkback-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"talkback-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"talkback-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"talkback-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"talkback-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y talkback-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
10 tools
talkback exposes 10 tools to a connected agent.
- get_session_context
- Reads your full session โ tracks, volumes, panning, mutes, sends, devices, routing
- get_track_details
- Deep-dives a single track with every device parameter in human-readable units
- get_spectral_snapshot
- Captures ~2s of live audio from master bus with peak/RMS per frequency band
- get_plugin_library
- Lists all installed AU and VST3 plugins on your system
- analyze_mix
- Runs heuristic checks for frequency buildup, dynamics, headroom, and routing issues
- set_device_parameter
- Changes a device parameter using human-readable units (dB, ms, Hz, etc.)
- toggle_device_bypass
- Enables or bypasses a device for A/B comparison
- create_group_track
- Creates a new group track containing specified tracks
- set_track_routing
- Changes a track's output routing to another track or bus
- get_bridge_health
- Returns bridge performance metrics from the M4L device
Score
60 / 100
Good
- Documentation21/25
- Maintenance13/25
- Trust6/20
- Capability8/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 160 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 10 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.1.3Latest | Mar 17, 2026 |