by dschuler36
An MCP Server for interacting with Reaper projects, enabling AI models like Claude Desktop to understand and answer questions about your digital audio workstation projects.
Reaper MCP Server is a simple Model Context Protocol (MCP) server designed to connect your Reaper (Digital Audio Workstation) projects with MCP clients, such as Claude Desktop. This integration allows AI models to interact with and understand the content of your Reaper projects, enabling you to ask questions about them.
uv
to create a virtual environment and install project dependencies: uv venv
, source .venv/bin/activate
, uv pip install .
setup/claude_desktop_config.json
) with your uv
installation path, Reaper project directory, and the server's directory.find_reaper_projects
and parse_reaper_project
tools are available by clicking the hammer icon in the bottom right of your chat box.find_reaper_projects
: Locates all Reaper projects within a specified directory.parse_reaper_project
: Parses a Reaper project and converts its data into a JSON object, making it machine-readable.src/domains/reaper_dataclasses.py
to see all parsed data.This is a simple MCP server that connects a Reaper project to an MCP client like Claude Desktop and enables you to ask questions about the project.
find_reaper_projects
: Finds all Reaper projects in the directory you specified in the config.parse_reaper_project
: Parses a Reaper project and returns a JSON object.These tools work in tandem. When you ask Claude a question about a specific Reaper project, it will use the find_reaper_projects
tool to find the project, then use the parse_reaper_project
tool to parse the project and answer your question. To see all data that is parsed from the project, check out the src/domains/reaper_dataclasses.py
file.
Install Dependencies
uv venv
source .venv/bin/activate
uv pip install .
Configure Claude Desktop
setup/claude_desktop_config.json
uv
installation pathLaunch and Configure
find_reaper_projects
parse_reaper_project
Ask Away!
Please log in to share your review and rating for this MCP.