@mthines/reaper-mcp 0.4.0 → 0.5.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.
Files changed (2) hide show
  1. package/main.js +19 -15
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -631,7 +631,7 @@ async function setup() {
631
631
  console.log(" 2. Actions > Show action list > Load ReaScript");
632
632
  console.log(` 3. Select: ${luaDest}`);
633
633
  console.log(" 4. Run the script (it will keep running in background via defer loop)");
634
- console.log(" 5. Add reaper-mcp to your Claude Code config (see: reaper-mcp doctor)");
634
+ console.log(" 5. Add reaper-mcp to your Claude Code config (see: npx @mthines/reaper-mcp doctor)");
635
635
  }
636
636
  async function installSkills() {
637
637
  console.log("REAPER MCP \u2014 Install AI Mix Engineer Skills\n");
@@ -691,22 +691,22 @@ async function doctor() {
691
691
  const bridgeRunning = await isBridgeRunning();
692
692
  console.log(`Lua bridge: ${bridgeRunning ? "\u2713 Connected" : "\u2717 Not detected"}`);
693
693
  if (!bridgeRunning) {
694
- console.log(' \u2192 Run "reaper-mcp setup" then load mcp_bridge.lua in REAPER');
694
+ console.log(' \u2192 Run "npx @mthines/reaper-mcp setup" then load mcp_bridge.lua in REAPER');
695
695
  }
696
696
  const agentsExist = existsSync2(join3(process.cwd(), ".claude", "agents"));
697
697
  console.log(`Mix agents: ${agentsExist ? "\u2713 Found (.claude/agents/)" : "\u2717 Not installed"}`);
698
698
  if (!agentsExist) {
699
- console.log(' \u2192 Run "reaper-mcp install-skills" in your project directory');
699
+ console.log(' \u2192 Run "npx @mthines/reaper-mcp install-skills" in your project directory');
700
700
  }
701
701
  const knowledgeExists = existsSync2(join3(process.cwd(), "knowledge"));
702
702
  console.log(`Knowledge base: ${knowledgeExists ? "\u2713 Found in project" : "\u2717 Not installed"}`);
703
703
  if (!knowledgeExists) {
704
- console.log(' \u2192 Run "reaper-mcp install-skills" in your project directory');
704
+ console.log(' \u2192 Run "npx @mthines/reaper-mcp install-skills" in your project directory');
705
705
  }
706
706
  const mcpJsonExists = existsSync2(join3(process.cwd(), ".mcp.json"));
707
707
  console.log(`MCP config: ${mcpJsonExists ? "\u2713 .mcp.json found" : "\u2717 .mcp.json missing"}`);
708
708
  if (!mcpJsonExists) {
709
- console.log(' \u2192 Run "reaper-mcp install-skills" to create .mcp.json');
709
+ console.log(' \u2192 Run "npx @mthines/reaper-mcp install-skills" to create .mcp.json');
710
710
  }
711
711
  console.log('\nTo check SWS Extensions, start REAPER and use the "list_available_fx" tool.');
712
712
  console.log("SWS provides enhanced plugin discovery and snapshot support.\n");
@@ -725,7 +725,7 @@ async function serve() {
725
725
  if (!bridgeRunning) {
726
726
  log("WARNING: Lua bridge does not appear to be running in REAPER.");
727
727
  log("Commands will timeout until the bridge script is started.");
728
- log('Run "reaper-mcp setup" for installation instructions.');
728
+ log('Run "npx @mthines/reaper-mcp setup" for installation instructions.');
729
729
  } else {
730
730
  log("Lua bridge detected \u2014 connected to REAPER");
731
731
  }
@@ -773,18 +773,22 @@ switch (command) {
773
773
  console.log(`reaper-mcp \u2014 AI-powered mixing for REAPER DAW
774
774
 
775
775
  Usage:
776
- reaper-mcp Start MCP server (stdio mode)
777
- reaper-mcp serve Start MCP server (stdio mode)
778
- reaper-mcp setup Install Lua bridge + JSFX analyzers into REAPER
779
- reaper-mcp install-skills Install AI mix engineer knowledge into your project
780
- reaper-mcp doctor Check that everything is configured correctly
781
- reaper-mcp status Check if Lua bridge is running in REAPER
776
+ npx @mthines/reaper-mcp Start MCP server (stdio mode)
777
+ npx @mthines/reaper-mcp serve Start MCP server (stdio mode)
778
+ npx @mthines/reaper-mcp setup Install Lua bridge + JSFX analyzers into REAPER
779
+ npx @mthines/reaper-mcp install-skills Install AI mix engineer knowledge + agents into your project
780
+ npx @mthines/reaper-mcp doctor Check that everything is configured correctly
781
+ npx @mthines/reaper-mcp status Check if Lua bridge is running in REAPER
782
782
 
783
783
  Quick Start:
784
- 1. reaper-mcp setup # install REAPER components
784
+ 1. npx @mthines/reaper-mcp setup # install REAPER components
785
785
  2. Load mcp_bridge.lua in REAPER (Actions > Load ReaScript > Run)
786
- 3. reaper-mcp install-skills # install AI knowledge in your project
787
- 4. Open Claude Code \u2014 REAPER tools + mix engineer brain are ready
786
+ 3. npx @mthines/reaper-mcp install-skills # install AI knowledge + agents
787
+ 4. Open Claude Code \u2014 REAPER tools + mix engineer agents are ready
788
+
789
+ Tip: install globally for shorter commands:
790
+ npm install -g @mthines/reaper-mcp
791
+ reaper-mcp setup
788
792
  `);
789
793
  break;
790
794
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mthines/reaper-mcp",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "description": "MCP server for controlling REAPER DAW — real-time mixing, FX control, and frequency analysis for AI agents",
6
6
  "license": "MIT",