@mthines/reaper-mcp 0.17.0 → 0.19.0-beta.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -4
- package/main.js +639 -98
- package/package.json +1 -1
- package/reaper/CLAUDE.md +4 -0
- package/reaper/install.sh +6 -4
- package/reaper/mcp_bridge.lua +181 -0
- package/reaper/mcp_snapshot_lib.lua +350 -0
- package/reaper/mcp_snapshot_manager.lua +38 -42
- package/reaper/mcp_snapshot_next.lua +25 -0
- package/reaper/mcp_snapshot_prev.lua +25 -0
- package/reaper/mcp_snapshot_quick_save.lua +41 -0
package/README.md
CHANGED
|
@@ -246,13 +246,25 @@ Checks that the bridge is connected, knowledge is installed, and MCP config exis
|
|
|
246
246
|
|
|
247
247
|
### Snapshots (A/B Testing)
|
|
248
248
|
|
|
249
|
+
Snapshots capture your full mixer state: track volumes, pans, mute/solo, FX chains (all parameter values, enabled/offline states, presets), and send levels. Use them to A/B compare mix decisions or revert to a known-good state.
|
|
250
|
+
|
|
249
251
|
| Tool | Description |
|
|
250
252
|
|------|-------------|
|
|
251
|
-
| `snapshot_save` | Save current mixer state (volumes, pans, FX, mutes) |
|
|
252
|
-
| `snapshot_restore` | Restore a saved snapshot |
|
|
253
|
-
| `snapshot_list` | List all saved snapshots |
|
|
253
|
+
| `snapshot_save` | Save current mixer state (volumes, pans, FX params, sends, mutes) |
|
|
254
|
+
| `snapshot_restore` | Restore a saved snapshot (smart FX matching — only restores params if plugin names match) |
|
|
255
|
+
| `snapshot_list` | List all saved snapshots with metadata |
|
|
254
256
|
| `snapshot_delete` | Delete a saved snapshot by name |
|
|
255
257
|
|
|
258
|
+
You can also manage snapshots directly in REAPER using the **Snapshot Manager** GUI (`mcp_snapshot_manager.lua`) — load it as a ReaScript action for a visual list with save/restore/delete buttons.
|
|
259
|
+
|
|
260
|
+
For quick A/B testing, bind these action scripts to keyboard shortcuts in REAPER:
|
|
261
|
+
|
|
262
|
+
| Script | Purpose | Suggested Key |
|
|
263
|
+
|--------|---------|---------------|
|
|
264
|
+
| `mcp_snapshot_quick_save.lua` | Save snapshot instantly (auto-named) | `Ctrl+Shift+S` |
|
|
265
|
+
| `mcp_snapshot_next.lua` | Restore next snapshot (wraps around) | `Ctrl+Right` |
|
|
266
|
+
| `mcp_snapshot_prev.lua` | Restore previous snapshot (wraps around) | `Ctrl+Left` |
|
|
267
|
+
|
|
256
268
|
### Routing
|
|
257
269
|
|
|
258
270
|
| Tool | Description |
|
|
@@ -316,7 +328,7 @@ Every change is bracketed by snapshots:
|
|
|
316
328
|
1. Agent saves a "Before" snapshot automatically
|
|
317
329
|
2. Makes all changes
|
|
318
330
|
3. Saves an "After" snapshot
|
|
319
|
-
4. You can restore either with `snapshot_restore` to A/B compare
|
|
331
|
+
4. You can restore either with `snapshot_restore` to A/B compare, or use the Snapshot Manager GUI in REAPER
|
|
320
332
|
|
|
321
333
|
### Genre Awareness
|
|
322
334
|
|
|
@@ -539,6 +551,7 @@ reaper-mcp/
|
|
|
539
551
|
├── reaper/ # Files installed into REAPER
|
|
540
552
|
│ ├── mcp_bridge.lua # Persistent Lua bridge
|
|
541
553
|
│ ├── mcp_snapshot_manager.lua # Snapshot manager GUI (save/restore/delete)
|
|
554
|
+
│ ├── mcp_snapshot_*.lua # Snapshot action scripts (next/prev/quick-save + shared lib)
|
|
542
555
|
│ ├── mcp_analyzer.jsfx # FFT spectrum analyzer
|
|
543
556
|
│ ├── mcp_lufs_meter.jsfx # LUFS meter (BS.1770)
|
|
544
557
|
│ ├── mcp_correlation_meter.jsfx # Stereo correlation meter
|