#!/usr/bin/env bash
cd "/Users/stevehiehn/total-reaper-mcp"
# Check if .venv-py310 exists (Python 3.10 required for MCP)
if [ -d ".venv-py310" ]; then
source .venv-py310/bin/activate
elif [ -d "venv" ]; then
source venv/bin/activate
else
echo "Error: No virtual environment found!"
exit 1
fi
# Get profile from command line or use dsl as default
PROFILE="${1:-dsl}"
echo "Starting REAPER MCP Server with profile: $PROFILE"
python -m server.app --profile "$PROFILE"
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shiehn/total-reaper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server