Start by downloading the installer on your platform, then enable RWAV Bridge in Roon.
1) Download & Install
Get the latest installers on the Downloads page.
2) Enable in Roon
- Open the Roon app → Settings → Extensions.
- Find RWAV Bridge and click Enable.
- Once enabled, the Bridge will be available to MCP tools.
MCP (Advanced for Developers)
Install the MCP server
- macOS (Homebrew):
brew install calibress/rwav/rwav-bridge-mcpthenrwav-bridge-mcp --help - Windows/Linux (npm):
npm i -g @calibress/rwav-bridge-mcp
Basic MCP settings (static)
{
"mcpServers": {
"rwav-bridge-mcp": {
"transport": "stdio",
"command": "rwav-bridge-mcp",
"env": {
"RWAV_DISCOVERY": "static",
"RWAV_BASE": "http://192.168.68.55:3002",
"RWAV_TOOL_ALLOWLIST": "tools,history"
}
}
}
}
Basic MCP settings (auto discovery)
{
"mcpServers": {
"rwav-bridge-mcp": {
"transport": "stdio",
"command": "rwav-bridge-mcp",
"env": {
"RWAV_DISCOVERY": "auto",
"RWAV_BASE": "auto",
"RWAV_TOOL_ALLOWLIST": "tools,history"
}
}
}
}

Leave a Reply