@mthines/reaper-mcp 0.15.0-beta.17.2 → 0.15.0
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 +64 -50
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,18 +12,20 @@ AI-powered mixing for REAPER DAW. An MCP server that gives AI agents (Claude Cod
|
|
|
12
12
|
## Quick Start
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
#
|
|
16
|
-
npx @mthines/reaper-mcp
|
|
17
|
-
|
|
18
|
-
# 2. In REAPER: Actions > Load ReaScript > select mcp_bridge.lua > Run
|
|
19
|
-
|
|
20
|
-
# 3. Install AI mix knowledge (globally by default, or --project for local)
|
|
21
|
-
npx @mthines/reaper-mcp install-skills
|
|
15
|
+
# Interactive guided setup (recommended)
|
|
16
|
+
npx @mthines/reaper-mcp init
|
|
22
17
|
|
|
23
|
-
#
|
|
18
|
+
# Or non-interactive — install everything with defaults
|
|
19
|
+
npx @mthines/reaper-mcp init --yes
|
|
24
20
|
```
|
|
25
21
|
|
|
26
|
-
|
|
22
|
+
The `init` wizard walks you through:
|
|
23
|
+
1. Installing the REAPER bridge (Lua + JSFX analyzers)
|
|
24
|
+
2. Installing AI mix knowledge and agents
|
|
25
|
+
3. Configuring Claude Code settings (auto-allows all 78 REAPER tools)
|
|
26
|
+
4. Optionally creating a project-local `.mcp.json`
|
|
27
|
+
|
|
28
|
+
Then load `mcp_bridge.lua` in REAPER and open Claude Code — you're ready to mix.
|
|
27
29
|
|
|
28
30
|
## What it does
|
|
29
31
|
|
|
@@ -70,21 +72,56 @@ REAPER's scripting environment is sandboxed — no sockets, no HTTP. The Lua bri
|
|
|
70
72
|
- [Node.js](https://nodejs.org/) 20+
|
|
71
73
|
- [SWS Extensions](https://www.sws-extension.org/) (recommended — enables plugin discovery and enhanced features)
|
|
72
74
|
|
|
73
|
-
###
|
|
75
|
+
### Option A: Interactive Setup (recommended)
|
|
74
76
|
|
|
75
77
|
```bash
|
|
78
|
+
npx @mthines/reaper-mcp init
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
The wizard guides you through selecting which components to install:
|
|
82
|
+
- **REAPER Bridge** — Lua bridge + JSFX analyzers (copied to your REAPER resource folder)
|
|
83
|
+
- **AI Skills & Agents** — knowledge base, mix agents, rules, skills (global or project-local)
|
|
84
|
+
- **Claude Code Settings** — auto-allows all 78 REAPER tools (no permission prompts)
|
|
85
|
+
- **Project Config** — `.mcp.json` for the current directory (opt-in)
|
|
86
|
+
|
|
87
|
+
For CI/automation, use `--yes` to skip prompts and install everything with defaults:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npx @mthines/reaper-mcp init --yes # bridge + global skills + settings
|
|
91
|
+
npx @mthines/reaper-mcp init --yes --project # also creates .mcp.json in current directory
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Option B: Manual Steps
|
|
95
|
+
|
|
96
|
+
If you prefer to run each step individually:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
# 1. Install REAPER components (Lua bridge + JSFX analyzers)
|
|
76
100
|
npx @mthines/reaper-mcp setup
|
|
101
|
+
|
|
102
|
+
# 2. Install AI mix knowledge (globally by default, or --project for local)
|
|
103
|
+
npx @mthines/reaper-mcp install-skills
|
|
104
|
+
npx @mthines/reaper-mcp install-skills --project # project-local alternative
|
|
77
105
|
```
|
|
78
106
|
|
|
79
|
-
|
|
107
|
+
**What gets installed:**
|
|
80
108
|
|
|
109
|
+
The `setup` command copies into your REAPER resource folder:
|
|
81
110
|
- `mcp_bridge.lua` — persistent Lua bridge script
|
|
82
111
|
- `mcp_analyzer.jsfx` — FFT spectrum analyzer
|
|
83
112
|
- `mcp_lufs_meter.jsfx` — ITU-R BS.1770 LUFS meter
|
|
84
113
|
- `mcp_correlation_meter.jsfx` — stereo correlation analyzer
|
|
85
114
|
- `mcp_crest_factor.jsfx` — dynamics/crest factor meter
|
|
86
115
|
|
|
87
|
-
|
|
116
|
+
The `install-skills` command installs to `~/.claude/` (global, default) or `.claude/` (project):
|
|
117
|
+
- `agents/` — mix engineer subagents (`@mix-engineer`, `@gain-stage`, `@mix-analyzer`, `@master`)
|
|
118
|
+
- `rules/` — architecture and development rules
|
|
119
|
+
- `skills/` — skills like `/learn-plugin`
|
|
120
|
+
- `knowledge/` — plugin knowledge, genre rules, workflows, reference data
|
|
121
|
+
|
|
122
|
+
### Start the Lua Bridge in REAPER
|
|
123
|
+
|
|
124
|
+
After setup (either option), load the bridge in REAPER:
|
|
88
125
|
|
|
89
126
|
1. Open REAPER
|
|
90
127
|
2. **Actions > Show action list > Load ReaScript**
|
|
@@ -93,30 +130,7 @@ This copies into your REAPER resource folder:
|
|
|
93
130
|
|
|
94
131
|
You should see in REAPER's console: `MCP Bridge: Started`
|
|
95
132
|
|
|
96
|
-
###
|
|
97
|
-
|
|
98
|
-
```bash
|
|
99
|
-
# Install globally (default) — available from any directory
|
|
100
|
-
npx @mthines/reaper-mcp install-skills
|
|
101
|
-
|
|
102
|
-
# Or install into a specific project
|
|
103
|
-
cd your-music-project
|
|
104
|
-
npx @mthines/reaper-mcp install-skills --project
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
**Global install** (`--global`, default) installs to `~/.claude/`:
|
|
108
|
-
|
|
109
|
-
- `~/.claude/agents/` — mix engineer subagents (`@mix-engineer`, `@gain-stage`, `@mix-analyzer`, `@master`)
|
|
110
|
-
- `~/.claude/rules/` — architecture and development rules
|
|
111
|
-
- `~/.claude/skills/` — skills like `/learn-plugin`
|
|
112
|
-
- `~/.claude/knowledge/` — plugin knowledge, genre rules, workflows, reference data
|
|
113
|
-
|
|
114
|
-
**Project install** (`--project`) installs to your current directory:
|
|
115
|
-
|
|
116
|
-
- `.claude/agents/`, `.claude/rules/`, `.claude/skills/`, `knowledge/` — same as above, scoped to the project
|
|
117
|
-
- `.mcp.json` — MCP server configuration for Claude Code
|
|
118
|
-
|
|
119
|
-
### Step 4: Verify
|
|
133
|
+
### Verify
|
|
120
134
|
|
|
121
135
|
```bash
|
|
122
136
|
npx @mthines/reaper-mcp doctor
|
|
@@ -245,7 +259,7 @@ Checks that the bridge is connected, knowledge is installed, and MCP config exis
|
|
|
245
259
|
|
|
246
260
|
## Using the Mix Agents
|
|
247
261
|
|
|
248
|
-
Once you've run `setup`
|
|
262
|
+
Once you've run `init` (or `setup` + `install-skills`), open Claude Code. Four specialized mix agents are available:
|
|
249
263
|
|
|
250
264
|
### Available Agents
|
|
251
265
|
|
|
@@ -359,9 +373,7 @@ Processing decisions adapt to the genre:
|
|
|
359
373
|
|
|
360
374
|
## Autonomous Mode (Allow All Tools)
|
|
361
375
|
|
|
362
|
-
By default Claude Code asks permission for each MCP tool call.
|
|
363
|
-
|
|
364
|
-
Add to your project's `.claude/settings.json` (or `~/.claude/settings.json` for global):
|
|
376
|
+
By default Claude Code asks permission for each MCP tool call. The `init` command (and `install-skills`) automatically configures `settings.json` to allow all 78 REAPER tools. If you need to set this up manually, add to your project's `.claude/settings.json` (or `~/.claude/settings.json` for global):
|
|
365
377
|
|
|
366
378
|
```json
|
|
367
379
|
{
|
|
@@ -443,21 +455,23 @@ The format is `mcp__reaper__{tool_name}`. Once added, Claude Code will run these
|
|
|
443
455
|
|
|
444
456
|
## CLI Commands
|
|
445
457
|
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
npx @mthines/reaper-mcp
|
|
449
|
-
npx @mthines/reaper-mcp setup
|
|
450
|
-
npx @mthines/reaper-mcp
|
|
451
|
-
npx @mthines/reaper-mcp
|
|
452
|
-
npx @mthines/reaper-mcp
|
|
453
|
-
npx @mthines/reaper-mcp
|
|
454
|
-
|
|
458
|
+
| Command | Description |
|
|
459
|
+
|---------|-------------|
|
|
460
|
+
| `npx @mthines/reaper-mcp init` | Interactive guided setup (recommended for new users) |
|
|
461
|
+
| `npx @mthines/reaper-mcp init --yes` | Non-interactive setup — install everything with defaults |
|
|
462
|
+
| `npx @mthines/reaper-mcp init --yes --project` | Non-interactive setup + create `.mcp.json` in current directory |
|
|
463
|
+
| `npx @mthines/reaper-mcp serve` | Start MCP server in stdio mode (default when no command given) |
|
|
464
|
+
| `npx @mthines/reaper-mcp setup` | Install Lua bridge + JSFX into REAPER |
|
|
465
|
+
| `npx @mthines/reaper-mcp install-skills` | Install AI knowledge + agents globally |
|
|
466
|
+
| `npx @mthines/reaper-mcp install-skills --project` | Install into current project directory |
|
|
467
|
+
| `npx @mthines/reaper-mcp doctor` | Verify everything is configured correctly |
|
|
468
|
+
| `npx @mthines/reaper-mcp status` | Check bridge connection |
|
|
455
469
|
|
|
456
470
|
Or install globally for shorter commands:
|
|
457
471
|
|
|
458
472
|
```bash
|
|
459
473
|
npm install -g @mthines/reaper-mcp
|
|
460
|
-
reaper-mcp
|
|
474
|
+
reaper-mcp init
|
|
461
475
|
```
|
|
462
476
|
|
|
463
477
|
## Claude Code Integration
|
package/package.json
CHANGED