Skip to content
VS Code

Audio Sonic MCP for VS Code

io.github.ripunjay-kashyap/audio-sonic-mcp

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

client:VS Code transport:stdio runtime:oci

Install Audio Sonic MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jobs-root",
      "description": "JOBS_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "keep-job-files",
      "description": "KEEP_JOB_FILES",
      "password": true
    }
  ],
  "servers": {
    "audio-sonic-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ripunjay-kashyap/audio-sonic-mcp:1.2.0"
      ],
      "env": {
        "JOBS_ROOT": "${input:jobs-root}",
        "KEEP_JOB_FILES": "${input:keep-job-files}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Audio Sonic MCP in other clients