Skip to content
VS Code

mcp lyricscom for VS Code

io.github.smeet666/mcp-lyricscom

Search song lyrics on lyrics.com by word or by title, and fetch full lyrics. No API key required.

client:VS Code transport:stdio runtime:npm

Install mcp lyricscom in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lyricscom-user-agent",
      "description": "LYRICSCOM_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lyricscom-min-interval-ms",
      "description": "LYRICSCOM_MIN_INTERVAL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lyricscom-log-level",
      "description": "LYRICSCOM_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-lyricscom": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-lyricscom"
      ],
      "env": {
        "LYRICSCOM_USER_AGENT": "${input:lyricscom-user-agent}",
        "LYRICSCOM_MIN_INTERVAL_MS": "${input:lyricscom-min-interval-ms}",
        "LYRICSCOM_LOG_LEVEL": "${input:lyricscom-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 lyricscom in other clients