music-perception-mcp
Analyzes audio files to extract exact, reproducible measurements like loudness, tempo, key, spectral balance, and clipping for LLM-based DAW control.
README
music-perception-mcp
The ears of a DAW-control agent. An MCP server that turns an audio file into exact, reproducible facts a text LLM can act on — loudness, true peak, tempo, key, spectral balance, clipping.
text-LLM brain (DeepSeek/…) ── decides ──► reaper-mcp.render_to_wav(...) ──► take.wav
▲ │
└────────────── facts (JSON) ◄── music-perception-mcp.analyze_audio(take.wav)
The brain renders a WAV (e.g. via reaper-mcp's
render_to_wav), calls a tool here to perceive it, then decides the next
mixing action. This server is a 取数型 (data-fetch) MCP tool in prism-core
terms: it returns context, it does not act on the DAW.
Speaks newline-delimited JSON-RPC 2.0 on stdin/stdout — the same protocol as
reaper-mcp, so prism-core's mcp_client connects to it identically.
Scope: deterministic measurement only
This server measures. The numbers are exact and reproducible (same file → same answer), computed by signal-processing libraries, not by an AI model.
It deliberately does not make subjective judgements — "sounds muddy",
"vocal is harsh", "the mood is sad". That perception is a separate, later
tool (listen_subjective, backed by an audio LLM such as Gemini) and lives
outside this v1 on purpose: the trustworthiness and use of "exact number" vs
"opinion" are different, so they are kept apart. See the music-agent design
docs for the two-layer plan.
Tools
analyze_audio(path)
One-stop analysis. Returns:
| Field | What you get | Library |
|---|---|---|
loudness.integrated_lufs |
Integrated loudness (ITU-R BS.1770 / EBU R128) | pyloudnorm |
loudness.loudness_range_lu |
Loudness range (dynamics), gated P95−P10 of short-term | pyloudnorm + numpy |
loudness.true_peak_dbtp |
True peak via 4× oversampling (catches inter-sample overs) | scipy |
loudness.sample_peak_db |
Raw sample peak | numpy |
tempo.bpm |
Estimated tempo | librosa |
key.key / key.mode / key.confidence |
Global musical key (Krumhansl-Schmuckler) | librosa |
spectral.bands_db_rel |
6-band energy balance (sub/bass/low-mid/mid/high-mid/high), relative dB | librosa |
spectral.centroid_hz / rolloff_hz |
Brightness measures | librosa |
clipping |
Digital full-scale clip count + first timestamps | numpy |
measure_loudness(path)
Loudness block only (integrated LUFS, range, true peak, sample peak). Skips librosa, so it's fast — use it for quick master-bus checks against a target (e.g. −14 LUFS for streaming).
Both take an absolute path, e.g. one returned by reaper-mcp's
render_to_wav. WAV is the expected input; any
libsndfile-readable format works
(FLAC/OGG/AIFF). MP3/M4A are not guaranteed — render to WAV first.
Capabilities and boundaries
What this server is good for — and where each number stops being trustworthy. Read this before acting on a value.
| Metric | Reliable for | Boundary / caveat |
|---|---|---|
| Integrated LUFS | Master/stem loudness vs a target; A/B before-after | Whole-file integrated; not a live/streaming meter |
| True peak (dBTP) | Catching inter-sample overs before a limiter ceiling | 4× oversample (BS.1770 minimum); a hair below dedicated 8× meters but well within practical tolerance |
| Loudness range (LU) | Rough dynamics / over-compression check | EBU-style short-term implementation; treat as indicative, not certified |
| Tempo (BPM) | Steady electronic / pop / rock | Unreliable on rubato, free time, ambient, or no clear beat — returns 0.0 when it finds no beat (honest, not an error) |
| Key | Single-key tonal material | One global key only — misses modulations/key changes; weak on atonal/percussive/sparse audio; major-vs-minor can flip on ambiguous tonality. Use confidence |
| Spectral bands | Comparing a mix against a reference curve ("too much 2–6 kHz vs the reference") | Relative energy (dB vs total), not an absolute/calibrated spectrum; not loudness-weighted |
| Clipping | Detecting digital full-scale clipping | Full-scale only (≥0.999); soft/analog-style clipping and inter-sample overs are not here — those show up as a high true_peak_dbtp |
Cross-cutting:
- Measurement, not opinion. No "muddy/harsh/sad" — that's the future subjective layer.
- Garbage in, garbage out. Feed it the actual render. The numbers describe exactly the file you pass, including its sample rate and channel layout.
- One global answer per file for tempo/key. For per-section analysis,
render that section (reaper-mcp
render_to_wavwith a time selection orregion:N) and analyze it separately.
Setup
pip install -r requirements.txt # numpy soundfile pyloudnorm librosa scipy
python server/test_server.py # offline self-test on a synthetic WAV
Register with an MCP client (e.g. prism-core / Claude Code) — add to your
mcp_servers.json / .mcp.json:
{
"mcpServers": {
"music-perception": {
"command": "python",
"args": ["A:\\Prismcode\\music-perception-mcp\\server\\music_perception_server.py"]
}
}
}
Dependencies & licensing
All dependencies are permissive (BSD/MIT/ISC) and pure-pip — no external
binary, no ffmpeg. They are confined to this server; the prism-core kernel
and the other MCP servers stay zero-dependency. Notably this avoids
madmom (non-commercial model weights) and Essentia (AGPL), so the stack
stays commercial-friendly.
Roadmap (not in v1)
separate_stems(path)— Demucs source separation (heavy; CPU-slow). Lets you measure each instrument's loudness/masking.listen_subjective(path, question?)— the subjective layer (audio LLM / Gemini): "does this sound muddy / harsh / what's the mood". Returns opinion JSON, kept separate from the exact numbers above.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。