Skip to content
VS Code

mcp lrclib for VS Code

io.github.smeet666/mcp-lrclib

Search tracks on LRCLIB and fetch plain or time-synced (LRC) lyrics. No API key.

client:VS Code transport:stdio runtime:npm

Install mcp lrclib in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lrclib-user-agent",
      "description": "LRCLIB_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lrclib-min-interval-ms",
      "description": "LRCLIB_MIN_INTERVAL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lrclib-log-level",
      "description": "LRCLIB_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-lrclib": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-lrclib"
      ],
      "env": {
        "LRCLIB_USER_AGENT": "${input:lrclib-user-agent}",
        "LRCLIB_MIN_INTERVAL_MS": "${input:lrclib-min-interval-ms}",
        "LRCLIB_LOG_LEVEL": "${input:lrclib-log-level}"
      }
    }
  }
}

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

mcp lrclib in other clients