REAPER MCP Server
@itsuzef
A comprehensive Model Context Protocol (MCP) server that enables AI agents to create fully mixed and mastered tracks in REAPER with both MIDI and audio capabilities.
Overview
What is REAPER MCP Server?
A Model Context Protocol (MCP) server that enables AI agents to control REAPER DAW. It provides 58 tools covering project management, tracks, MIDI, FX, mixing, mastering, rendering, and audio analysis.
How to use REAPER MCP Server?
Install with pip install reaper-mcp-server. REAPER must be running with its distant API enabled (run the enable_reapy.py ReaScript once). Use the server with Claude Desktop by adding it to claude_desktop_config.json, or with Claude Code via claude mcp add reaper -- reaper-mcp-server. Run standalone with reaper-mcp-server (optionally --debug). Configuration is stored in the platform’s config directory.
Key features of REAPER MCP Server
- 58 tools for full DAW control
- Project creation, loading, and saving
- Track and bus management with sends
- MIDI note, chord, and drum pattern creation
- FX and instrument loading with parameter control
- Audio import, recording, and pitch/rate adjustment
- Mixing automation, rendering, and mastering chains
- Audio analysis: loudness, dynamics, frequency, stereo, transients, clipping
Use cases of REAPER MCP Server
- Automating project setup and tempo/time signature changes
- Creating and arranging tracks with MIDI patterns and effects
- Applying mixing and mastering chains to a session
- Rendering final mixes, stems, or time selections
- Analyzing audio characteristics like loudness and clipping
FAQ from REAPER MCP Server
What are the requirements?
REAPER DAW must be installed and running. Python 3.10 or higher is required, and REAPER’s distant API must be enabled.
How do I set up REAPER for this server?
Open REAPER, go to Actions > Run ReaScript, run scripts/enable_reapy.py (or a new script with reapy.config.enable_dist_api()), and restart REAPER.
Where is the configuration file stored?
On macOS: ~/Library/Application Support/reaper-mcp/config.json, on Linux: ~/.config/reaper-mcp/config.json, on Windows: %APPDATA%\reaper-mcp/config.json.
How do I install the server?
Install via pip: pip install reaper-mcp-server. Alternatively, clone the repository and run pip install -e .
What transport does the server use?
The server communicates with REAPER via python-reapy and is configured as a standard MCP server using stdio transport. No authentication method is documented.