MCP Server Connects Claude to Room EQ Wizard for Studio Acoustics Analysis

A developer has built an MCP server that connects Claude AI to Room EQ Wizard (REW), the standard tool for room acoustics measurement. Instead of manually interpreting frequency response graphs, Claude can now perform the analysis and guide users through fixing their room acoustics.
What It Does
When you ask Claude to "help me calibrate my studio monitors," the system:
- Connects to REW's API and configures audio devices
- Checks microphone levels and calibrates monitors to 85 dB SPL reference
- Runs Left, Right, and Sub measurements
- Analyzes room modes, SBIR, reflections, and L/R symmetry, explaining results in plain language
- Shows what Genelec GLM's DSP actually fixed versus what it physically cannot address
- Provides one recommendation at a time, has users re-measure after each change, and validates improvements
Technical Details
The server includes 27 MCP tools total covering measurement control, signal generator, SPL meter, real-time analyzer, and EQ management. Claude can run entire measurement campaigns autonomously.
For Claude Code users, there's a bonus plugin with:
/rew:calibrate,/rew:analyze,/rew:optimize, and/rew:statuscommands- Two auto-activating skills (room acoustics domain knowledge + workflow orchestration)
- A measurement quality reviewer agent that proactively checks data
- A workflow enforcement hook that warns if steps are skipped
Setup
Installation is one line:
npx rew-mcp
Claude Desktop configuration:
{
"mcpServers": {
"rew-mcp": {
"command": "npx",
"args": ["-y", "rew-mcp"]
}
}
}
The project is open source under MIT license with 884 tests available on GitHub. This implementation demonstrates how MCP can give Claude real-time access to measurement hardware and domain-specific analysis tools, enabling complete feedback loops (measure → analyze → recommend → validate) that would normally require hours of manual work.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw Skill Usage Tracker: Monitor Which Skills You Actually Use
A developer built a tool to track OpenClaw skill usage analytics, including invocation counts, breakdowns by agent and channel, and top skill rankings over different time periods.

Inline Visualizer: Local AI Models Can Now Render Interactive HTML Visualizations
Inline Visualizer is a BSD-3 licensed plugin for Open WebUI that enables any local AI model with tool calling support to render interactive HTML/SVG visualizations directly in chat, with a JavaScript bridge allowing elements to send messages back to the AI.

ClaudeClaw: Free Claude Code Plugin for Persistent AI Agents on Messaging Platforms
ClaudeClaw is a free, open-source MIT-licensed Claude Code plugin that runs Claude as a persistent agent on Slack, WhatsApp, and Telegram. It requires Node.js 20+, Claude Code, and your own Anthropic API key, with OS-level sandbox isolation via Anthropic's sandbox-runtime.

OpenTabs: MCP Server with 100+ Plugins for Browser-Based AI Tool Access
OpenTabs is an MCP server and Chrome extension that exposes 100+ plugins with ~2,000 tools by hooking into web apps' internal APIs like Slack, Discord, and GitHub. It works with existing browser sessions, eliminating API keys and OAuth flows.