The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Reaper MCP listing page.
A TwelveTake Studios project.
Setup guide, examples and FAQ -> twelvetake.com/tools/reaper-mcp
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.
Version: 1.7.3
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 |
|---|---|
setup_sidechain_compression() | Creates send, routes to channels 3-4, configures ReaComp's detector input — complete sidechain setup in one call |
add_mastering_chain() | Adds ReaEQ → ReaComp → ReaEQ → ReaLimit to master track with proper signal flow |
add_parallel_compression() | Creates a bus track, sets up the send, adds compressor — NY-style compression ready to blend |
create_bus() | Creates a submix track and routes your specified tracks to it |
get_project_summary() | Returns track count, all track names/volumes/pans/FX, markers, regions, tempo, time signature — everything your AI needs in one call |
The bridge script runs inside REAPER and handles communication with the MCP server.
The package can deploy it for you:
That copies reaper_mcp_bridge.lua into REAPER's Scripts folder for your platform, backing
up any existing copy first. It writes nothing else, and the server never touches your REAPER
installation on its own. Pass a path if REAPER is portable or installed somewhere unusual:
--install-bridge "/path/to/REAPER/Scripts".
To do it by hand instead:
reaper_mcp_bridge.lua to your REAPER Scripts folder:
%APPDATA%\REAPER\Scripts\~/Library/Application Support/REAPER/Scripts/~/.config/REAPER/Scripts/reaper_mcp_bridge.lua and click RunYou should see "REAPER MCP Bridge (File-based, Full API) started" in REAPER's console.
The server is published on PyPI as twelvetake-reaper-mcp. The simplest path is to let your
MCP client launch it with uvx (or pipx) — nothing to install by hand.
Add it to your MCP client's configuration (e.g. .mcp.json, or your client's MCP settings):
VS Code uses a top-level
serverskey with"type": "stdio"instead ofmcpServers.
To confirm the server starts on its own:
It waits quietly for a client to connect — press Ctrl+C to stop.
With REAPER open and the bridge running, ask your assistant "how many tracks are in my project?" — a number back means the server, bridge, and REAPER are all talking.
To work on the server itself, run it from a clone instead of from PyPI. Install the dependencies:
Point your MCP client at the local script:
Then check the connection with:
If you use Nix, the repo ships a flake-based dev shell that provides Python 3.12 and creates/activates a virtualenv for you:
Then install the dependencies as usual:
This pins the Python version and keeps dependencies isolated from your system.
Note: the
x86_64-linuxdev shell is tested and working. The macOS (Darwin) shells are provided but have not been tested — confirmation from a macOS user is welcome.
The server and the bridge exchange JSON files in a mailbox directory that the bridge script polls from inside REAPER. There is no network configuration and no port to open.
Bridge directory: REAPER's own Scripts/mcp_bridge_data, resolved per platform:
| Platform | Path |
|---|---|
| Windows | %APPDATA%\REAPER\Scripts\mcp_bridge_data |
| macOS | ~/Library/Application Support/REAPER/Scripts/mcp_bridge_data |
| Linux | ~/.config/REAPER/Scripts/mcp_bridge_data (or ~/.reaper/... for older installs) |
Override with REAPER_BRIDGE_DIR for portable installs. The server prints the directory it
resolved to stderr on startup, and includes it in any timeout error.
The HTTP transport that shipped alongside this was removed in v1.7.2. It had been deprecated
since v1.2.1, and its request parser could never read a POST body, so no call it was handed
ever reached REAPER. REAPER_COMM_MODE no longer does anything.
| Tool | Description |
|---|---|
get_track_count() | Get total number of tracks (excluding master) |
get_track(index) | Get track info (name, volume, pan, mute, solo) |
get_all_tracks() | Get info for all tracks |
get_master_track() | Get master track info |
insert_track(index, name) | Create a new track |
delete_track(index) | Delete a track |
set_track_name(index, name) | Rename a track |
set_track_volume(index, db) | Set volume in dB |
set_track_pan(index, pan) | Set pan (-1 to 1) |
set_track_mute(index, mute) | Mute/unmute track |
set_track_solo(index, solo) | Solo/unsolo track |
set_track_phase(index, invert) | Invert phase |
set_track_width(index, width) | Set stereo width (0-2) |
set_track_color(index, r, g, b) | Set track color |
get_track_peak(index, channel) | Get current peak level (dB) |
get_track_peak_hold(index, channel) | Get held peak since last reset (dB) |
clear_all_peak_indicators() | Reset peak hold on all tracks |
get_track_master_send(index) | Get master/parent send state |
set_track_master_send(index, enabled) | Enable/disable master send |
set_track_as_folder(index, depth) | Set as folder parent/child |
arm_track(index, arm) | Arm for recording |
set_track_input(index, input) | Set record input |
set_track_monitor(index, mode) | Set monitor mode |
| Tool | Description |
|---|---|
track_fx_get_count(index) | Count FX on track |
track_fx_get_list(index) | List all FX with details |
track_fx_add_by_name(index, name, position?) | Add FX plugin (optionally at position) |
track_fx_move(index, fx_index, new_position) | Reorder FX in the chain |
track_fx_delete(index, fx_index) | Remove FX |
track_fx_get_name(index, fx_index) | Get FX name |
track_fx_get_enabled(index, fx_index) | Check if enabled |
track_fx_set_enabled(index, fx_index, enabled) | Enable/bypass FX |
track_fx_get_num_params(index, fx_index) | Count parameters |
track_fx_get_param_name(index, fx_index, param) | Get parameter name |
track_fx_get_param(index, fx_index, param) | Get parameter value |
track_fx_set_param(index, fx_index, param, value) | Set parameter value |
get_fx_presets(index, fx_index) | List available presets |
get_fx_preset(index, fx_index) | Get current preset |
set_fx_preset(index, fx_index, name) | Load preset |
save_fx_preset(index, fx_index, name) | Save current settings as preset |
Dedicated ReaEQ band control using REAPER's EQ-specific API, which handles ReaEQ's non-linear parameter curves (dB gain, log frequency, log Q) correctly.
| Tool | Description |
|---|---|
find_eq(track, instantiate?) | Find ReaEQ on a track (optionally add it) |
get_eq_bands(track, fx) | Read all ReaEQ bands with human-readable values |
set_eq_band(track, fx, bandtype, bandidx, paramtype, value, is_normalized?) | Set a band parameter (Hz, dB, or Q) |
get_eq_band_enabled(track, fx, bandtype, bandidx?) | Check whether a band is enabled |
set_eq_band_enabled(track, fx, bandtype, bandidx?, enabled?) | Enable/disable a band |
Per-take (per-item) FX, mirroring the track FX tools. Every take is addressed by
(track_index, item_index, take_index).
| Tool | Description |
|---|---|
take_fx_get_count(track, item, take) | Count FX on a take |
take_fx_get_list(track, item, take) | List all take FX with details |
take_fx_add_by_name(track, item, take, name) | Add FX plugin to a take |
take_fx_delete(track, item, take, fx) | Remove FX from a take |
take_fx_get_name(track, item, take, fx) | Get take FX name |
take_fx_get_enabled(track, item, take, fx) | Check if enabled |
take_fx_set_enabled(track, item, take, fx, enabled) | Enable/bypass take FX |
take_fx_get_num_params(track, item, take, fx) | Count parameters |
take_fx_get_param_name(track, item, take, fx, param) | Get parameter name |
take_fx_get_param(track, item, take, fx, param) | Get parameter value |
take_fx_set_param(track, item, take, fx, param, value) | Set parameter value |
Multi-take workflows: list/switch/delete takes, explode/crop, REAPER 7 fixed-lane comping.
| Tool | Description |
|---|---|
get_takes(track, item) | List all takes (name + active flag) |
get_active_take(track, item) | Get the active take index |
set_active_take(track, item, take) | Switch which take plays |
explode_takes(track, item) | Explode takes to overlapping items (in place) |
crop_to_active_take(track, item) | Keep only the active take |
delete_take(track, item, take) | Delete a specific take |
select_comp_lane(track, lane) | Play one fixed lane exclusively (lane comping) |
| Tool | Description |
|---|---|
create_send(src, dest) | Create send between tracks |
delete_send(index, send_index) | Remove a send |
set_send_volume(index, send_index, db) | Set send level |
get_track_num_sends(index) | Count sends from track |
set_send_dest_channels(index, send_index, chan) | Route to specific channels |
set_send_source_channels(index, send_index, chan) | Set source channels |
setup_sidechain_send(src, dest, db) | Create sidechain send |
configure_reacomp_sidechain(index, fx_index, use) | Configure ReaComp sidechain |
setup_sidechain_compression(trigger, target, fx, db) | Complete sidechain setup |
| Tool | Description |
|---|---|
play() | Start playback |
stop() | Stop playback |
pause() | Pause playback |
record() | Start recording |
get_play_state() | Get current state (playing/paused/recording) |
get_cursor_position() | Get edit cursor position (seconds) |
set_cursor_position(seconds) | Move edit cursor |
get_play_position() | Get playback position (seconds) |
toggle_repeat() | Toggle loop mode |
get_repeat_state() | Check if looping |
| Tool | Description |
|---|---|
get_project_summary() | Get comprehensive project state in one call |
save_project() | Save current project |
create_project() | Create new project (REAPER cannot name an unsaved project) |
open_project(path) | Open project file |
get_project_path() | Get project directory |
get_project_name() | Get project filename |
get_project_length() | Get project length (seconds) |
get_tempo() | Get project tempo (BPM) |
set_tempo(bpm) | Set project tempo |
get_time_signature() | Get time signature |
set_time_signature(num, denom) | Set time signature |
render_project(path, start, end, tail) | Render to audio file |
render_region(index, path) | Render specific region |
zoom_to_selection() | Zoom to time selection |
zoom_to_project() | Zoom to show entire project |
| Tool | Description |
|---|---|
create_midi_item(track, pos, length) | Create empty MIDI item |
get_midi_item(track, item) | Get MIDI item info |
add_midi_note(track, item, pitch, vel, start_beat, length_beats, chan) | Add single note (beats) |
add_midi_notes_batch(track, item, notes) | Add multiple notes |
get_midi_notes(track, item) | Get all notes |
delete_midi_note(track, item, note) | Delete a note |
clear_midi_item(track, item) | Delete all notes |
set_midi_note_velocity(track, item, note, vel) | Change note velocity |
Editing tools for notes that already exist. Every one takes the same optional filter — a pitch range, an onset window in beats from the item start, and a channel — so you can target a phrase without selecting anything by hand. Timing is in beats, pitch in semitones. Each is one undo step.
| Tool | Description |
|---|---|
transpose_midi_notes(track, item, semitones, ...) | Shift pitch; notes pushed outside 0-127 are left alone, never wrapped |
snap_midi_notes_to_scale(track, item, root, mode, ...) | Snap off-key notes onto a scale (named or a custom interval list) |
quantize_midi_notes(track, item, grid, strength, swing, ...) | Snap onsets to the project grid, with strength and swing |
nudge_midi_notes(track, item, amount_beats, ...) | Shift notes in time; lengths preserved |
stretch_midi_notes(track, item, factor, pivot_beat, ...) | Scale timing about a pivot (half-time / double-time) |
legato_midi_notes(track, item, mode, voice, ...) | Close the gaps in a line, or set every note to one length |
humanize_midi_notes(track, item, timing, velocity, seed, ...) | Seeded, reproducible timing + velocity jitter |
strum_midi_notes(track, item, spread_beats, direction, ...) | Roll a chord out into a strum |
ramp_midi_note_velocities(track, item, start_vel, end_vel, ...) | Linear velocity ramp across a phrase (crescendo) |
scale_midi_note_velocities(track, item, mode, ratio, ...) | Multiply / set / compress velocities |
set_midi_note(track, item, note, ...) | Edit one note's pitch, velocity, timing, channel |
get_selected_midi_notes(track, item) | Read the notes selected in REAPER's editor |
remove_overlapping_midi_notes(track, item, mode, ...) | Trim or delete overlapping same-pitch notes |
remove_overlapping_midi_notes is the only one here that can remove notes; the rest only move
what is already there. It is flagged destructive so a client can prompt first.
| Tool | Description |
|---|---|
insert_audio_file(track, path, pos) | Import audio file |
get_track_items(track) | List all items on track |
get_item_info(track, item) | Get item details |
set_item_position(track, item, pos) | Move item |
set_item_length(track, item, length) | Change item length |
delete_item(track, item) | Delete item |
duplicate_item(track, item) | Duplicate item |
split_item(track, item, pos) | Split item at position |
set_item_mute(track, item, mute) | Mute/unmute item |
set_item_volume(track, item, db) | Set item volume |
set_item_fade_in(track, item, length) | Set fade-in |
set_item_fade_out(track, item, length) | Set fade-out |
select_all_items() | Select all items |
unselect_all_items() | Deselect all items |
get_selected_items() | Get selected items |
copy_selected_items() | Copy to clipboard |
paste_items() | Paste from clipboard |
| Tool | Description |
|---|---|
add_marker(pos, name, color) | Add marker |
add_region(start, end, name, color) | Add region |
get_markers() | Get all markers |
get_regions() | Get all regions |
delete_marker(index) | Delete marker |
delete_region(index) | Delete region |
go_to_marker(index) | Jump to marker |
go_to_region(index) | Jump to region start |
| Tool | Description |
|---|---|
get_track_envelope(track, name) | Get envelope by name |
get_envelope_point_count(track, name) | Count envelope points |
add_envelope_point(track, name, time, value, shape) | Add automation point |
get_envelope_points(track, name) | Get all points |
delete_envelope_point(track, name, index) | Delete point |
clear_envelope(track, name) | Clear all points |
set_track_automation_mode(track, mode) | Set automation mode |
arm_track_envelope(track, name, arm) | Arm envelope for recording |
| Tool | Description |
|---|---|
get_fx_envelope(track, fx, param) | Get/create envelope for any FX parameter |
add_fx_envelope_point(track, fx, param, time, value, shape) | Add automation point to FX parameter |
get_fx_envelope_points(track, fx, param) | Get all points from FX envelope |
delete_fx_envelope_point(track, fx, param, point) | Delete point from FX envelope |
clear_fx_envelope(track, fx, param) | Clear all points from FX envelope |
| Tool | Description |
|---|---|
undo() | Undo last action |
redo() | Redo last undone action |
get_undo_state() | Get undo/redo state |
select_track(index, exclusive) | Select a track |
select_all_tracks() | Select all tracks |
unselect_all_tracks() | Deselect all tracks |
get_selected_tracks() | Get selected track indices |
set_time_selection(start, end) | Set time selection |
get_time_selection() | Get time selection |
clear_time_selection() | Clear time selection |
delete_selected_items() | Delete selected items |
| Tool | Description |
|---|---|
add_mastering_chain() | Add EQ→Comp→EQ→Limiter to master |
add_parallel_compression(track, db) | Set up NY compression |
create_bus(name, tracks) | Create submix bus |
add_eq(track) | Add ReaEQ |
add_compressor(track) | Add ReaComp |
add_limiter(track) | Add ReaLimit |
| Tool | Description |
|---|---|
run_action(action_id) | Run REAPER action by ID |
run_action_by_name(name) | Run action by name |
get_track_fx_chunk(track, fx) | Get raw FX state data |
cut_selected_items() | Cut items to clipboard |
-1Use these names with track_fx_add_by_name():
| Plugin | Name |
|---|---|
| EQ | ReaEQ |
| Compressor | ReaComp |
| Limiter | ReaLimit |
| Gate | ReaGate |
| Delay | ReaDelay |
| Reverb | ReaVerbate or ReaVerb |
Third-party plugins use their full name as shown in REAPER's FX browser.
-1 for master trackget_track_count()twelvetake-reaper-mcp --install-bridge, then load and run it from
REAPER's action list. REAPER runs the deployed copy, not the one in a clone.add_midi_notes_batch)| Variable | Default | Description |
|---|---|---|
REAPER_BRIDGE_DIR | REAPER's Scripts/mcp_bridge_data, resolved per platform | File bridge directory |
REAPER_FILE_TIMEOUT | 5.0 | Seconds to wait for the bridge to answer. The bridge answers only once the work finishes, and renders run at roughly realtime, so a render longer than this reports a timeout while REAPER completes it normally. Raise it when rendering; note that a genuinely unreachable bridge then also takes this long to report. |
REAPER_MCP_DEBUG | unset | Set to 1 before launching REAPER for per-call bridge console logging |
See CONTRIBUTING.md. Read the first section before writing a patch: this repo is published from a private working repo through an explicit allowlist, so PRs are ported by hand rather than merged, and it is better to know that up front. A well-diagnosed issue is worth as much here as a patch and costs you far less.
People outside the project whose work is in this software are listed in CONTRIBUTORS.md, including several whose diagnoses shipped before anyone here thought to look for them.
MIT License - see LICENSE
TwelveTake Studios LLC Website: twelvetake.com Contact: contact@twelvetake.com