Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides reference documentation for REAPER development, including ReaScript API, JSFX programming, and ReaWrap API, with tools to search and query function information to prevent redundant token usage.

README.md

Reaper Dev MCP Server

![CI](https://github.com/Conceptual-Machines/reaper-dev-mcp/actions/workflows/ci.yml) ![License: MIT](https://opensource.org/licenses/MIT) ![Node.js](https://nodejs.org/) ![Python](https://www.python.org/)

MCP (Model Context Protocol) server providing reference documentation for REAPER development, ReaScript API, JSFX programming, and ReaWrap API.

Purpose

This server provides static reference documentation that serves as a lookup reference for factual information about REAPER development. It helps prevent "token burn" by avoiding the need to rediscover common patterns and pitfalls in every session.

Features

  • Queryable API Documentation: Use tools to search and get detailed function information
  • JSFX Fundamentals: Core concepts and gotchas
  • ReaScript API: Complete function reference with signatures and parameters (2,282 functions across C, EEL2, Lua, Python)
  • ReaWrap API: Object-oriented wrapper documentation (14 classes, 736 methods)

Installation

Quick Start

Choose your IDE and follow the instructions:

Claude Code CLI

Prerequisites: Node.js v18+

Installation (one command):

claude mcp add --transport stdio --scope user reaper-dev -- npx -y reaper-dev-mcp

Verify it's working:

claude mcp list

You should see: reaper-dev: npx -y reaper-dev-mcp - ✓ Connected

That's it! The server will automatically start when Claude Code needs it. Restart your Claude Code session to use the tools.

---

Cursor IDE

Cursor supports both stdio and HTTP transports. Stdio is recommended (no background process needed).

Option A: stdio Transport (Recommended)

Prerequisites: Node.js v18+

  1. Open Cursor settings:
  • macOS/Linux: ~/.cursor/mcp.json
  • Windows: %APPDATA%\Cursor\mcp.json
  1. Add this configuration:
{
  "mcpServers": {
    "reaper-dev": {
      "command": "npx",
      "args": ["-y", "reaper-dev-mcp"]
    }
  }
}
  1. Restart Cursor

That's it! Cursor will spawn the server automatically when needed.

Option B: HTTP/SSE Transport

If you prefer HTTP (or stdio doesn't work), use this method:

  1. Start the server in a terminal (keep it running):
   npx -y reaper-dev-mcp

The server will start on http://localhost:3000. For a custom port: ``bash PORT=8080 npx -y reaper-dev-mcp ``

  1. Open Cursor settings and add:
{
  "mcpServers": {
    "reaper-dev": {
      "type": "sse",
      "url": "http://localhost:3000"
    }
  }
}
  1. Restart Cursor

Note: The server must be running before Cursor starts.

---

Claude Desktop

Claude Desktop requires HTTP/SSE transport.

Prerequisites: Node.js v18+

  1. Start the server in a terminal (keep it running):
   npx -y reaper-dev-mcp

The server will start on http://localhost:3000. For a custom port: ``bash PORT=8080 npx -y reaper-dev-mcp ``

  1. Configure Claude Desktop:

Locate your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
  1. Add this configuration:
{
  "mcpServers": {
    "reaper-dev": {
      "type": "sse",
      "url": "http://localhost:3000"
    }
  }
}
  1. Restart Claude Desktop

Note: The server must be running before Claude Desktop starts.

---

Development Setup

If you want to modify the server or contribute:

git clone https://github.com/Conceptual-Machines/reaper-dev-mcp.git
cd reaper-dev-mcp
npm install
npm run build

Run in development mode: ``bash npm run dev ``

Run tests: ``bash npm run test ``

MCP Tools

get_function_info

Get detailed information about a function from JSFX, ReaScript, or ReaWrap API.

Parameters:

  • api (string): One of "jsfx", "reascript", "reawrap"
  • function_name (string): Name of the function to look up
  • class_name (string, optional): Required for ReaWrap API queries

Examples:

// JSFX
{
  "api": "jsfx",
  "function_name": "sin"
}

// ReaScript
{
  "api": "reascript",
  "function_name": "TrackFX_GetParam"
}

// ReaWrap
{
  "api": "reawrap",
  "class_name": "track",
  "function_name": "add_fx_by_name"
}

search_functions

Search for functions across JSFX, ReaScript, or ReaWrap APIs.

Parameters:

  • api (string): One of "jsfx", "reascript", "reawrap"
  • query (string): Search query (function name, description, etc.)
  • limit (number, optional): Maximum number of results (default: 10)

Examples:

{
  "api": "reawrap",
  "query": "create",
  "limit": 5
}

Resources

All documentation is available as MCP resources:

  • reascript://jsfx-fundamentals - Core JSFX concepts
  • reascript://parameter-system - REAPER parameter system
  • reascript://parameter-modulation - Parameter linking (plink API)
  • reascript://fx-containers - FX container system
  • reascript://reawrap-api - ReaWrap API reference

API Coverage

The MCP server provides access to:

  • JSFX API: 110 functions from official REAPER documentation
  • ReaScript API: 2,282 functions organized by language (C, EEL2, Lua, Python)
  • ReaWrap API: 14 classes with 736 methods

Success Criteria

No More Token Burn: Stop rediscovering JSFX parameter indexing every session ✅ Fast Problem Solving: Quick lookup for plink API, container indices ✅ Prevent Regressions: Document all bugs so they're never repeated ✅ Reusable Knowledge: Can be used across all REAPER projects

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.