reaper-mcp
Click on "Install 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., "@reaper-mcpadd a mastering chain to the master track"
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.
TwelveTake REAPER MCP
A TwelveTake Studios project.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control REAPER DAW for mixing, mastering, MIDI composition, and full music production workflows.
Built by a working producer with 7+ albums released. These aren't theoretical tools—they're battle-tested in real sessions.
Version: 1.3.1
Why This Server
Workflow Automation, Not Just API Wrappers
Most MCP servers just wrap REAPER's API and call it a day. This one includes production workflow helpers that handle multi-step operations in a single call:
Tool | What it does for you |
| Creates send, routes to channels 3-4, configures ReaComp's detector input — complete sidechain setup in one call |
| Adds ReaEQ → ReaComp → ReaEQ → ReaLimit to master track with proper signal flow |
| Creates a bus track, sets up the send, adds compressor — NY-style compression ready to blend |
| Creates a submix track and routes your specified tracks to it |
| Returns track count, all track names/volumes/pans/FX, markers, regions, tempo, time signature — everything your AI needs in one call |
Zero Configuration
File-based communication works immediately — no network setup, no ports to configure
Stock REAPER Lua only — the bridge script has no dependencies, nothing extra to install in REAPER
Copy the script, run it, connect your AI assistant
158 Tools Covering Real Production Needs
Full FX control — add/remove plugins, get/set any parameter by index, manage presets, bypass
FX parameter automation — automate any plugin knob (flanger depth, filter cutoff, etc.)
Complete routing — sends, receives, sidechain routing to specific channel pairs
Automation — create envelopes, add/edit points, set automation modes
MIDI — create items, add notes individually or in batches, edit velocities
Audio items — import, split, duplicate, fade, position, mute
Markers & regions — create, edit, navigate, render by region
Related MCP server: ReaMCP
Requirements
REAPER (any recent version)
Python 3.8+ (for the MCP server)
An MCP-compatible AI assistant
Installation
1. Install the Bridge Script in REAPER
The bridge script runs inside REAPER and handles communication with the MCP server.
Copy
reaper_mcp_bridge.luato your REAPER Scripts folder:Windows:
%APPDATA%\REAPER\Scripts\macOS:
~/Library/Application Support/REAPER/Scripts/Linux:
~/.config/REAPER/Scripts/
In REAPER: Actions → Show action list → Load ReaScript
Select
reaper_mcp_bridge.luaand click Run
You should see "REAPER MCP Bridge started" in REAPER's console.
2. Install the MCP Server
pip install -r requirements.txtOr install dependencies directly:
pip install mcp httpx3. Configure Your AI Assistant
Add to your MCP client's configuration (e.g., .mcp.json):
{
"mcpServers": {
"reaper": {
"command": "python",
"args": ["path/to/reaper_mcp_server.py"]
}
}
}4. Verify Connection
python test_connection.pyCommunication Modes
The file-based bridge is the supported path — it is reliable and needs no extra setup. HTTP mode is deprecated (see below).
File-Based (Default, Recommended)
Uses JSON files for communication. More reliable, no network configuration needed. This is the only actively maintained path; all tools are guaranteed to work here.
MCP Server REAPER Bridge
│ │
├── writes request_N.json ────►│
│ ├── processes request
│◄── reads response_N.json ────┤Bridge directory: %APPDATA%\REAPER\Scripts\mcp_bridge_data
HTTP Mode (Deprecated)
Deprecated as of v1.2.1. The HTTP bridges (
reaper_web_server.lua/reaper_web_server.py) are kept for existing users but are no longer maintained and will not receive new tools. They may be removed in a future major release (v2.0). Use the file bridge instead.
Uses HTTP requests on localhost. Requires additional setup:
Lua HTTP bridge: Requires LuaSocket (install via ReaPack → "sockmonkey")
Python HTTP bridge: Requires Python enabled in REAPER preferences
# Set environment variable to use HTTP mode
REAPER_COMM_MODE=http python reaper_mcp_server.pyDefault port: 9000
Quick Start Examples
Basic Track Operations
"How many tracks are in my project?"
"Create a new track called 'Vocals'"
"Set track 0 volume to -6dB"
"Mute track 2"
"Solo the drums track"Mixing
"Add ReaComp to the bass track"
"Set up sidechain compression from the kick to the bass"
"Create a drum bus and route tracks 0-3 to it"
"Add a mastering chain to the master track"FX and Parameters
"What plugins are on track 0?"
"Get the parameters for the compressor on track 1"
"Set the threshold to -20dB"
"Bypass the EQ on the vocal track"MIDI Composition
"Create a 4-bar MIDI item on track 0"
"Add a C major chord at the start"
"Get all the notes in the MIDI item"
"Set the velocity of note 0 to 100"Transport and Navigation
"Play the project"
"Stop playback"
"Set the cursor to 30 seconds"
"Add a marker called 'Chorus' at the current position"Project Management
"What's the project tempo?"
"Set the tempo to 120 BPM"
"Save the project"
"Render to D:/Output/mix.wav"Tool Reference
Track Operations (23 tools)
Tool | Description |
| Get total number of tracks (excluding master) |
| Get track info (name, volume, pan, mute, solo) |
| Get info for all tracks |
| Get master track info |
| Create a new track |
| Delete a track |
| Rename a track |
| Set volume in dB |
| Set pan (-1 to 1) |
| Mute/unmute track |
| Solo/unsolo track |
| Invert phase |
| Set stereo width (0-2) |
| Set track color |
| Get current peak level (dB) |
| Get held peak since last reset (dB) |
| Reset peak hold on all tracks |
| Get master/parent send state |
| Enable/disable master send |
| Set as folder parent/child |
| Arm for recording |
| Set record input |
| Set monitor mode |
FX Operations (16 tools)
Tool | Description |
| Count FX on track |
| List all FX with details |
| Add FX plugin (optionally at position) |
| Reorder FX in the chain |
| Remove FX |
| Get FX name |
| Check if enabled |
| Enable/bypass FX |
| Count parameters |
| Get parameter name |
| Get parameter value |
| Set parameter value |
| List available presets |
| Get current preset |
| Load preset |
| Save current settings as preset |
Take FX Operations (11 tools)
Per-take (per-item) FX, mirroring the track FX tools. Every take is addressed by
(track_index, item_index, take_index).
Tool | Description |
| Count FX on a take |
| List all take FX with details |
| Add FX plugin to a take |
| Remove FX from a take |
| Get take FX name |
| Check if enabled |
| Enable/bypass take FX |
| Count parameters |
| Get parameter name |
| Get parameter value |
| Set parameter value |
Take Management & Comping (7 tools)
Multi-take workflows: list/switch/delete takes, explode/crop, REAPER 7 fixed-lane comping.
Tool | Description |
| List all takes (name + active flag) |
| Get the active take index |
| Switch which take plays |
| Explode takes to overlapping items (in place) |
| Keep only the active take |
| Delete a specific take |
| Play one fixed lane exclusively (lane comping) |
Routing (9 tools)
Tool | Description |
| Create send between tracks |
| Remove a send |
| Set send level |
| Count sends from track |
| Route to specific channels |
| Set source channels |
| Create sidechain send |
| Configure ReaComp sidechain |
| Complete sidechain setup |
Transport (10 tools)
Tool | Description |
| Start playback |
| Stop playback |
| Pause playback |
| Start recording |
| Get current state (playing/paused/recording) |
| Get edit cursor position (seconds) |
| Move edit cursor |
| Get playback position (seconds) |
| Toggle loop mode |
| Check if looping |
Project (15 tools)
Tool | Description |
| Get comprehensive project state in one call |
| Save current project |
| Create new project |
| Open project file |
| Get project directory |
| Get project filename |
| Get project length (seconds) |
| Get project tempo (BPM) |
| Set project tempo |
| Get time signature |
| Set time signature |
| Render to audio file |
| Render specific region |
| Zoom to time selection |
| Zoom to show entire project |
MIDI Operations (8 tools)
Tool | Description |
| Create empty MIDI item |
| Get MIDI item info |
| Add single note (beats) |
| Add multiple notes |
| Get all notes |
| Delete a note |
| Delete all notes |
| Change note velocity |
Audio Items (17 tools)
Tool | Description |
| Import audio file |
| List all items on track |
| Get item details |
| Move item |
| Change item length |
| Delete item |
| Duplicate item |
| Split item at position |
| Mute/unmute item |
| Set item volume |
| Set fade-in |
| Set fade-out |
| Select all items |
| Deselect all items |
| Get selected items |
| Copy to clipboard |
| Paste from clipboard |
Markers & Regions (8 tools)
Tool | Description |
| Add marker |
| Add region |
| Get all markers |
| Get all regions |
| Delete marker |
| Delete region |
| Jump to marker |
| Jump to region start |
Automation (8 tools)
Tool | Description |
| Get envelope by name |
| Count envelope points |
| Add automation point |
| Get all points |
| Delete point |
| Clear all points |
| Set automation mode |
| Arm envelope for recording |
FX Parameter Automation (5 tools)
Tool | Description |
| Get/create envelope for any FX parameter |
| Add automation point to FX parameter |
| Get all points from FX envelope |
| Delete point from FX envelope |
| Clear all points from FX envelope |
Selection & Editing (11 tools)
Tool | Description |
| Undo last action |
| Redo last undone action |
| Get undo/redo state |
| Select a track |
| Select all tracks |
| Deselect all tracks |
| Get selected track indices |
| Set time selection |
| Get time selection |
| Clear time selection |
| Delete selected items |
Mixing Helpers (6 tools)
Tool | Description |
| Add EQ→Comp→EQ→Limiter to master |
| Set up NY compression |
| Create submix bus |
| Add ReaEQ |
| Add ReaComp |
| Add ReaLimit |
Advanced (4 tools)
Tool | Description |
| Run REAPER action by ID |
| Run action by name |
| Get raw FX state data |
| Cut items to clipboard |
Track Indexing
Regular tracks: 0-based index (first track = 0)
Master track: Use index
-1
"Set the master track volume to -3dB" → track_index = -1
"Mute track 1" → track_index = 1 (second track)Common Plugin Names
Use these names with track_fx_add_by_name():
Plugin | Name |
EQ |
|
Compressor |
|
Limiter |
|
Gate |
|
Delay |
|
Reverb |
|
Third-party plugins use their full name as shown in REAPER's FX browser.
Troubleshooting
"Cannot connect to REAPER"
Ensure REAPER is running
Ensure the bridge script is running (check REAPER's console)
For file mode: verify the bridge directory exists
For HTTP mode: check port 9000 isn't blocked
"Track not found"
Track indices are 0-based
Use
-1for master trackCheck track count with
get_track_count()
Bridge script won't load
Lua: Ensure LuaSocket is installed (ReaPack → "sockmonkey")
Python: Enable Python in REAPER preferences
Slow response
File-based mode has ~50ms latency per call
Batch operations when possible (e.g.,
add_midi_notes_batch)
Environment Variables
Variable | Default | Description |
|
| Communication mode ( |
|
| File bridge directory |
|
| HTTP bridge host |
|
| HTTP bridge port |
License
MIT License - see LICENSE
TwelveTake Studios LLC Website: twelvetake.com Contact: contact@twelvetake.com
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TwelveTake-Studios/reaper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server