A Python MCP server providing audio analysis tools for AI-driven sound recreation. It imports, separates, analyzes, and compares audio so an AI agent can configure hardware synthesizers to match a target sound.
| Tool | Description |
|---|---|
import_audio |
Import a local audio file, normalize to 44.1kHz 16-bit mono WAV |
stem_separate |
Separate audio into stems (vocals, drums, bass, other, guitar, piano) using Demucs |
audio_list_devices |
List available audio input devices |
audio_render |
Capture audio from a system device (BlackHole, USB audio) |
spectrum_analyze |
Extract mel spectrogram, spectral features, ADSR, and modulation |
audio_compare |
Compare target vs. synthesized audio (mel spectrogram distance, per-band energy) |
note_transcribe |
Polyphonic transcription via Basic Pitch — outputs MIDI + note events JSON |
note_triage |
Analyze transcription, select best candidate notes for isolation |
note_isolate |
Isolate a note from audio within a time-frequency box via STFT masking |
amplitude_analyze |
Per-cluster ADSR analysis with cross-candidate consistency check (not ready for production — see docs/TODO.md) |
Requires uv (which provisions Python 3.11 for you — the pin matters: Basic Pitch needs CoreML/TensorFlow, which break on 3.12+).
-
Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh -
Add this to your MCP client config:
{ "mcpServers": { "audio-analysis-mcp": { "command": "uvx", "args": ["audio-analysis-mcp"] } } } -
Restart the client. Most tools work out of the box; three need optional deps (below):
audio_renderandaudio_list_devicesneed PortAudio, andstructure_analyzeneeds SongFormer.
audio_render / audio_list_devices need PortAudio (brew install portaudio on macOS), plus BlackHole for system audio. Without them the server still runs; only those two tools error.
Needs SongFormer. Enable it by adding it to the run:
{
"mcpServers": {
"audio-analysis-mcp": {
"command": "uvx",
"args": ["--with", "songformer @ git+https://github.com/uribrecher/SongFormer.git@v0.2.0", "audio-analysis-mcp"]
}
}
}License note: this pulls MuQ model weights licensed CC-BY-NC-4.0 (non-commercial use only). SongFormer's own code/weights are CC-BY-4.0 (ASLP-lab/NPU).
The HTTP /jobs/* service is an optional extra: uvx --from 'audio-analysis-mcp[service]' python -m audio_analysis_mcp.service.
uv sync --dev --extra service # dev tools + service deps
uv run pytest -m "not slow" # fast suite (CI default)
uv run mypy src/ # type check
uv run python -m audio_analysis_mcp # run the stdio server from sourceVersioning and the changelog are derived from Conventional Commits by
Commitizen — never hand-edited. Because the repo
squash-merges, the PR title is the release signal and is gated by the pr-title check
(feat: → minor, fix: → patch; docs:/chore:/etc. → no release). We stay in 0.x
(major_version_zero).
Normal flow (automatic):
- Merge feature PRs with Conventional-Commit titles.
- When
feat:/fix:have accumulated,release.ymlopens/updates achore(release): vX.Y.ZPR that bumps[project].versionand regeneratesCHANGELOG.md. - Merge that release PR (admins bypass the ruleset to merge the bot PR).
release.ymlthen tagsvX.Y.Zand dispatchespublish.yml. - Approve the
pypienvironment deployment.publish.ymlbuilds and publishes to PyPI via Trusted Publishing.
Manual escape hatch: uv run cz bump locally (bumps version + changelog + tag), then
git push --follow-tags — the pushed tag fires publish.yml directly.
The scratch/ directory holds ad-hoc Python scripts used during research and
debugging — not part of the MCP server. They explore algorithms (clustering,
ADSR fitting, envelope shapes, overlap detection), inspect intermediate
outputs from real songs (e.g. Van Halen "Jump" triage clusters), and generate
the plots referenced from docs/TODO.md and docs/research/.
These scripts are intentionally untested and may bit-rot as the underlying
analysis modules evolve. Treat them as a notebook: useful starting points for
reproducing past experiments or scaffolding new ones, not as a stable API.
Run them directly with uv run python scratch/<script>.py.
Licensed under the GNU General Public License v3.0 (GPL-3.0-or-later). See LICENSE.
This project depends on GPL-licensed components (notably vmo and cvxopt, both
GPLv3), so the combined work is distributed under the GPL.