Skip to content
VS Code

audiolab for VS Code

tools.audiolab/audiolab

Loudness (EBU R128 / BS.1770-4), true-peak and voice-quality analysis for local files and URLs.

client:VS Code transport:stdio runtime:npm

Install audiolab in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "audiolab-api-key",
      "description": "AUDIOLAB_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "audiolab-api-base",
      "description": "AUDIOLAB_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "audiolab-timeout-ms",
      "description": "AUDIOLAB_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "audiolab": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@audiolabtools/mcp-server"
      ],
      "env": {
        "AUDIOLAB_API_KEY": "${input:audiolab-api-key}",
        "AUDIOLAB_API_BASE": "${input:audiolab-api-base}",
        "AUDIOLAB_TIMEOUT_MS": "${input:audiolab-timeout-ms}"
      }
    }
  }
}

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

audiolab in other clients