Back to Browse

Audio Sonic MCP Server

Developer ToolsUse Caution4.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Local-first audio analysis: BPM, musical key, production profile, and CLAP vibe embeddings.

About

Local-first audio analysis: BPM, musical key, production profile, and CLAP vibe embeddings.

Security Report

4.2
Use Caution4.2High Risk

Audio Sonic MCP is a well-structured audio analysis server with appropriate permissions for its purpose (local audio processing, YouTube downloads, ML inference). The codebase demonstrates good security practices with proper error handling, no hardcoded credentials, and all external data fetching properly scoped. Minor code quality issues and some broad exception handling do not materially impact security posture. Supply chain analysis found 8 known vulnerabilities in dependencies (0 critical, 7 high severity).

4 files analyzed ยท 13 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

process_spawn

Check that this permission is expected for this type of plugin.

system_info

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Directory for job working files (downloaded audio, WAV, stems). Mount a volume here.Optional

Environment variable: JOBS_ROOT

Set to 1 to keep audio and stems on disk after a run instead of cleaning up.Optional

Environment variable: KEEP_JOB_FILES

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-ripunjay-kashyap-audio-sonic-mcp": {
      "env": {
        "JOBS_ROOT": "your-jobs-root-here",
        "KEEP_JOB_FILES": "your-keep-job-files-here"
      },
      "args": [
        "audio-sonic-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

๐ŸŽต Audio Sonic MCP

Tests License: MIT Python 3.10+ MCP

Turn any song into a structured "sonic signature" โ€” extracting tempo, musical key, a 512-dimension CLAP vibe embedding, human-readable vibe tags, and a production profile โ€” from a single local call.

Audio Sonic MCP runs entirely on your local machine (requiring no API keys, external servers, or cloud dependencies) and exposes two premium access points to the same underlying high-fidelity audio analysis engine:

Tailored ForCore Interface & Mechanics
๐Ÿค– MCP ServerLLMs, AI agents, & IDEs (Claude, Cursor, Windsurf, Cline)Asynchronous, fire-and-forget analysis of YouTube URLs. Avoids blocking client LLMs during heavy audio processing.
๐ŸŽš๏ธ Local CLIMusicians, sound producers, & audio engineersDeep command-line tool targeting local files for full-song multi-window analysis and high-fidelity output.

๐ŸŽน Quick Taste: What You Get

1. Musician-Friendly CLI Summary (--summary mode)

๐ŸŽต SONIC SIGNATURE โ€” my_demo.mp3  (3:24)

  TEMPO    153.8 BPM  (steady)
  KEY      G Major  ยท  shifts to G Phrygian @0:30   (confidence 74%)
  VIBE     aggressive ยท dark ยท driving ยท hip-hop ยท gritty

  PRODUCTION
     Vocals     forward
     Punch      0.62  (moderate)
     Stereo     wide
     Low end    ~55 Hz dominant

  Overall confidence: 88%   ยท   analyzed in 0:28 (GPU-accelerated)

2. Comprehensive JSON (Returned by MCP and CLI by default)

{
  "header": {
    "job_id": "sig_a3f9b2c1",
    "status": "success",
    "confidence_score": 0.88,
    "source_metadata": {
      "title": "Acoustic Vibe Demo",
      "duration_sec": 204,
      "source_type": "file"
    }
  },
  "sonic_signature": {
    "bpm": 153.8,
    "bpm_engine": "madmom",
    "bpm_variable": false,
    "key": "G Major",
    "key_variable": true,
    "key_map": [
      { "start_sec": 0.0,  "end_sec": 30.0, "key": "G Major" },
      { "start_sec": 30.0, "end_sec": 90.0, "key": "G Phrygian" }
    ],
    "mode_confidence": 0.74,
    "vibe_vector": [0.012, -0.034, "... 512 float dimensions ..."],
    "vibe_tags": ["aggressive", "dark", "driving", "hip-hop", "gritty"],
    "production_profile": {
      "vocal_presence": "forward",
      "transient_punch": 0.62,
      "stereo_width": "wide",
      "dominant_freq_peaks_hz": {
        "harmonic": [55.0, 110.2],
        "percussive": [125.0, 250.1]
      }
    }
  },
  "telemetry": {
    "inference_time_sec": 28.0
  }
}

โšก Key Features

  • ๐Ÿฅ Tempo & Beat Tracking โ€” Full BPM computation with variable-tempo drift detection and transient windowing.
  • ๐ŸŽน Key & Harmonic Mapping โ€” Computes structural musical key + mode, generating a detailed key_map tracking section-by-section modulations.
  • ๐ŸŒˆ Vibe & Style Embeddings โ€” Compiles a 512-dimensional CLAP embedding and human-readable style tags (covering energy, texture, mood, and genre) using zero-shot music vocab classification.
  • ๐ŸŽš๏ธ Production Analytics โ€” Measures vocal spatial presence, transient punch coefficients, stereo width, and dominant frequency peaks.
  • ๐Ÿค– MCP-Native System โ€” Fully exposes 4 standardized Model Context Protocol tools for instant integration into AI tools.
  • ๐Ÿชถ Robust Graceful Degradation โ€” Automatically utilizes a CUDA GPU if present and falls back to CPU; gracefully degrades to HPSS and standard librosa feature arrays if heavy deep learning packages ([clap]) are omitted.
  • ๐Ÿ”’ 100% Offline & Private โ€” All conversion, separation, and inference occur locally.

๐Ÿ“ฆ Installation & Setup

System Prerequisites

Ensure you have Python 3.10+ and FFmpeg installed and accessible on your system PATH.

Installing FFmpeg:
  • macOS: brew install ffmpeg
  • Linux (Debian/Ubuntu): sudo apt update && sudo apt install -y ffmpeg
  • Windows: Run winget install Gyan.FFmpeg via PowerShell (Administrator), or download manually from ffmpeg.org and add the bin directory to your system environment variables.

Step-by-Step Installation

  1. Clone the Repository

    git clone https://github.com/ripunjay-kashyap/audio-sonic-mcp.git
    cd audio-sonic-mcp
    
  2. Initialize Virtual Environment

    python -m venv .venv
    # Activate on macOS/Linux:
    source .venv/bin/activate
    # Activate on Windows (PowerShell):
    .venv\Scripts\activate
    
  3. Install Dependencies Choose between the lightweight core engine or the full high-fidelity ML suite:

    • Option A: Full High-Fidelity ML Suite (Recommended) Includes demixing stems (Demucs) and zero-shot vibe vectors (CLAP). Requires ~4 GB disk space.
      pip install -e ".[clap]"
      
    • Option B: Core Lightweight Pipeline Uses standard digital signal processing (HPSS/librosa). Rapid install and minimal footprint.
      pip install -e .
      

[!NOTE] The optional [clap] stack installs torch, torchaudio, transformers, and demucs. Without these, the server automatically switches to light fallbacks (HPSS instead of Demucs, standard feature matrices instead of CLAP vectors, and leaves out vibe_tags).


๐Ÿค– MCP Client Configuration Guide

Audio Sonic MCP registers itself as a standard package script. This enables you to run it using the global executable name (audio-sonic-mcp) directly from your virtual environment's bin folder, or run the script file manually.

1. Claude Desktop Setup

Open your Claude configuration file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Add the server to your mcpServers object:

{
  "mcpServers": {
    "audio-sonic-mcp": {
      "command": "C:\\path\\to\\audio-sonic-mcp\\.venv\\Scripts\\audio-sonic-mcp.exe",
      "args": [],
      "env": {
        "JOBS_ROOT": "C:\\path\\to\\audio-sonic-mcp\\jobs"
      }
    }
  }
}

[!IMPORTANT] Windows Users: Always use double backslashes (\\) in JSON configuration paths. Point the executable directly to the .exe inside your .venv\Scripts\ directory.


2. Cursor IDE Integration

To integrate Audio Sonic MCP into Cursor's AI pane:

  1. Navigate to Settings โž” Features โž” MCP.
  2. Click + Add New MCP Server.
  3. Fill in the parameters:
    • Name: audio-sonic-mcp
    • Type: command
    • Command: /path/to/audio-sonic-mcp/.venv/bin/audio-sonic-mcp (use .exe extension on Windows)

3. Windsurf Integration

Open your Windsurf MCP configurations file (typically found at ~/.codeium/windsurf/mcp_config.json) and append the configuration:

{
  "mcpServers": {
    "audio-sonic-mcp": {
      "command": "/path/to/audio-sonic-mcp/.venv/bin/python",
      "args": ["/path/to/audio-sonic-mcp/server.py"],
      "env": {
        "JOBS_ROOT": "/path/to/audio-sonic-mcp/jobs"
      }
    }
  }
}

4. Cline (VS Code Extension) Setup

Open Cline's MCP setting file (usually located at %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json or equivalent platform storage) and add:

{
  "mcpServers": {
    "audio-sonic-mcp": {
      "command": "/path/to/audio-sonic-mcp/.venv/bin/audio-sonic-mcp",
      "args": [],
      "env": {
        "JOBS_ROOT": "/path/to/audio-sonic-mcp/jobs"
      }
    }
  }
}

๐Ÿค– Interaction Flow for AI Agents & LLMs

LLMs automatically learn how to use this server by reading its exposed tool definitions. Because audio stem separation and CLAP embeddings are computationally demanding, Audio Sonic MCP uses an Asynchronous Fire-and-Forget Job Pattern.

Automated LLM Workflow

  [User Prompts LLM]
          โ”‚
          โ–ผ
1. Submit URL โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–บ [Tool: get_sonic_signature]
                                      โ”‚ (Returns Job ID instantly)
                                      โ–ผ
2. Notify User โ—„โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ [LLM acknowledges job is queued]
          โ”‚
          โ”œโ”€โ”€โ”€โ–บ 3. Wait 10-15s (Or proceed with other tasks)
          โ”‚
          โ–ผ
4. Check Progress โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–บ [Tool: get_job_status]
                                      โ”‚ (Checks status: running/success/error)
                                      โ–ผ
5. Present Signature โ—„โ”€โ”€โ”€โ”€โ”€โ”€โ”€ [LLM formats rich output for user]

Natural Prompts to Try

  • "Check the health of my audio-sonic-mcp server to make sure all ML components are ready."
  • "Submit this YouTube track for sonic analysis: https://www.youtube.com/watch?v=XXXXXX."
  • "Check the progress of my sonic signature job sig_a1b2c3d4 and summarize the BPM, production width, and vibe once complete."

๐ŸŽš๏ธ CLI Usage (Local Files)

For musicians, engineers, and producers working directly in the terminal, you can analyze a full-length local file directly without running any background servers:

# Get a visual, musician-friendly sonic signature digest (recommended)
python analyze_file.py "my_demo.wav" --summary

# Print full raw JSON directly to the stdout stream
python analyze_file.py "my_demo.wav"

# Dump JSON payload to a file while keeping the stdout clean
python analyze_file.py "my_demo.wav" > signature.json

CLI Command Options Reference

OptionShorthandDescription
pathNoneAbsolute or relative path to the local audio file (Required).
--summary-sPrint a clean, formatted terminal summary instead of standard JSON.
--no-vectorNoneGenerate JSON signature but omit the heavy 512-dimension vibe float array.
--out FILE-oOutput the final JSON signature directly to the specified file.
--keep-kDo not delete intermediate WAV files or separated stem files in jobs/.
--job-id ID-jExplicitly define the internal identifier (useful for batch scripts).

Supported File Formats: wav, mp3, flac, ogg, m4a, aac.


๐Ÿ”ง Environment Variables Reference

Configure environment options by declaring these variables in your active terminal session, container environment, or the env block of your MCP configuration file:

VariableDefault ValueDescription / Practical Use
JOBS_ROOT./jobsWorkspace directory where audio files, temporary converted WAVs, and stems are processed.
KEEP_JOB_FILESUnsetSet to 1 or true to keep separated stem WAVs on disk (adds ~75MB per job, useful for troubleshooting).
FILE_MAX_DURATION_SEC600Safety ceiling for local file processing duration (YouTube downloads are capped at 60 minutes).
FFMPEG_BINUnsetPath to folder containing the ffmpeg binary if it is not present in your system PATH.
YTDLP_PROXYUnsetHTTP/SOCKS proxy string passed directly to yt-dlp to bypass rate limits or network blocks.
TRANSPORT_MODEstdioTransport the server listens on: stdio (default, for local MCP clients), sse (remote MCP over HTTP), or hybrid (MCP SSE and the REST API from app_cloud.py). sse/hybrid need pip install ".[cloud]".
PORT8000Listening port when TRANSPORT_MODE is sse or hybrid. Ignored for stdio.

๐Ÿณ Docker / Podman Execution

If you prefer to avoid setting up local Python libraries, running via containers encapsulates FFmpeg, yt-dlp, and the core Python dependencies (CPU-based pipeline):

# Build the container image
docker build -t audio-sonic-mcp .

# Run the MCP server over stdio, mounting local folders for job persistence
docker run -i --rm \
  -v "$(pwd)/jobs:/app/jobs" \
  -v "$(pwd)/models:/app/models" \
  audio-sonic-mcp

To connect Claude Desktop to your Docker container, configure claude_desktop_config.json:

{
  "mcpServers": {
    "audio-sonic-mcp-docker": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-v", "/absolute/path/to/jobs:/app/jobs",
        "-v", "/absolute/path/to/models:/app/models",
        "audio-sonic-mcp"
      ]
    }
  }
}

โš™๏ธ How it Works under the Hood

Audio Sonic MCP pipelines are constructed modularly, using transactional checkpoints to ensure reliability.

  LLM Agent / Claude Desktop                 Musician (Terminal)
            โ”‚                                          โ”‚
            โ”‚  MCP (stdio JSON-RPC)                    โ”‚  analyze_file.py
            โ–ผ                                          โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  Modular 6-Stage Analysis Pipeline                                       โ”‚
โ”‚                                                                          โ”‚
โ”‚  Stage 1: Ingestion   โ”‚ Pre-checks format, scans duration metadata       โ”‚
โ”‚  Stage 2: Download    โ”‚ Fetches audio tracks via yt-dlp (URLs only)      โ”‚
โ”‚  Stage 3: Conversion  โ”‚ normalizes sample formats to 44.1kHz WAV (FFmpeg)โ”‚
โ”‚  Stage 4: Separation  โ”‚ Splits stems: Vocals, Drums, Bass, Other (Demucs)โ”‚
โ”‚  Stage 5: Analysis    โ”‚ Computes BPM, modulations, key, punch (librosa)  โ”‚
โ”‚  Stage 6: Embeddings  โ”‚ Generates 512-dim zero-shot music vibe tags (CLAP)โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                      โ–ผ
             Result Payload: (header ยท sonic_signature ยท telemetry)
  1. Stem Demixing: Meta AI's Demucs (mdx_extra) separates the track into isolation stems (vocals, drums, bass, other). If missing, it gracefully drops back to Harmonic-Percussive Source Separation (HPSS).
  2. Analysis engine: librosa extracts rhythmic and tonal structures, matching chord patterns and sub-bass movements against Krumhansl-Schmuckler and Phrygian template engines.
  3. Semantic Vibe Tagging: LAION CLAP (laion/larger_clap_music_and_speech) runs zero-shot inference against high-coverage aesthetic descriptors (moods, textures, genres), choosing top candidates across stylistic poles.

๐Ÿฉบ Resiliency & Troubleshooting

1. One-Time Setup Download Delays

Upon the very first analysis job utilizing the full ML pipeline, demucs and transformers will download their pre-trained model weights (approximately 400 MB for Demucs, and 200 MB for CLAP).

  • The server redirects download progress indicators to stderr so they do not corrupt the JSON-RPC standard stream.
  • During this download, get_job_status will remain in running. Allow 1โ€“3 minutes depending on your network speed. Subsequent startups take under 10 seconds.

2. FastMCP Concurrency Controls

Model inference on multi-staged architectures is highly CPU/VRAM intensive. To protect consumer hardware and virtual environments from crashing (OutOfMemory exceptions), Audio Sonic MCP enforces a strict global serialization lock (CONCURRENCY_LOCK).

  • If you submit multiple URLs simultaneously, they will be processed sequentially.
  • Polling get_job_status for subsequent jobs will report queued or running while they wait in the pipeline queue.

3. Windows Librosa Deadlock Fix

FastMCP thread dispatching under Windows can cause Numba compilation deadlocks inside background worker threads. To prevent this, Audio Sonic MCP incorporates a Pre-warming Routine (_prewarm_librosa() and _prewarm_demucs()) on launch. It forces JIT compile of resampling, HPSS, and mono-mixing functions in the main thread before starting the RPC listener.

4. BPM Accuracy and the bpm_engine Field

Tempo is estimated by madmom's RNN beat tracker. madmom is an optional dependency: it is unmaintained (latest release 0.16.1, classifiers stop at Python 3.7) and requires a Cython build, so it cannot be installed reliably everywhere and is not part of the default install.

When madmom is unavailable the pipeline falls back to librosa. That fallback is good on steady four-on-the-floor material but can lock onto a 2:3 or octave multiple of the true tempo โ€” on one of our regression fixtures it reports 99.4 BPM against a ground truth of 148.

So the tempo is never reported unqualified. Every payload carries a bpm_engine field naming the engine that actually produced the number:

bpm_engineMeaning
madmomRNN beat tracker โ€” full accuracy.
librosa-fallbackmadmom unavailable; treat BPM as approximate and expect occasional octave/triplet errors.

check_health reports madmom's status explicitly. To enable the accurate path:

pip install ".[beats]"

If the build fails on a recent Python, use 3.10 for the analysis environment โ€” madmom has no wheels for newer interpreters.

5. Diagnosing with check_health

If the server reports as degraded or tools are missing, call the check_health tool or check CLI warnings. It queries:

  • Availability of ffmpeg on the execution path.
  • Installation status of Python packages (librosa, soundfile, mcp, etc.).
  • Presence of the optional madmom beat tracker, and which bpm_engine will be used as a result.
  • Access permissions to the JOBS_ROOT directory.

๐Ÿ› ๏ธ Development & Testing

Run unit tests inside your virtual environment to verify the mathematical pipelines using synthesized audio waveforms:

# Install development test framework
pip install -e ".[dev]"

# Execute full suite (requires no network or model downloads)
pytest

# Test specifically CLI execution code paths
pytest tests/test_cli.py

๐Ÿ“„ License

Distributed under the MIT License. See LICENSE for details.

ยฉ 2026 Ripunjay Kashyap. All rights reserved.

Reviews

No reviews yet

Be the first to review this server!