Configuration
Claude Desktop
Add remix-mcp to your Claude Desktop configuration:
Location
| Platform | Config Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
Basic Configuration
{
"mcpServers": {
"ableton": {
"command": "uvx",
"args": ["remix-mcp"]
}
}
}Using Binary Directly
If you installed the binary manually:
{
"mcpServers": {
"ableton": {
"command": "/path/to/remix-mcp"
}
}
}Claude Code
Add the server with a single command:
claude mcp add ableton -- uvx remix-mcpOr with a local binary:
claude mcp add ableton -- /path/to/remix-mcpList configured servers:
claude mcp listRemove a server:
claude mcp remove abletonCLI Commands
remix-mcp provides several commands:
# Start MCP server (default, used by Claude)
remix-mcp serve
# Install AbletonOSC Remote Script
remix-mcp install
# Force reinstall
remix-mcp install --force
# Check installation status
remix-mcp status
# Show help
remix-mcp --helpEnvironment Variables
Currently, remix-mcp uses hardcoded defaults for OSC communication:
| Setting | Default | Description |
|---|---|---|
| Send Port | 11000 | Port to send OSC to Ableton |
| Receive Port | 11001 | Port to receive OSC from Ableton |
| Host | 127.0.0.1 | Localhost only |
| Timeout | 5s | Response timeout |