Skip to content
VS Code

Spotify MCP for VS Code

io.github.novalux12/spotify-mcp-server

The most complete Spotify MCP: playback, library, playlists, search, podcasts and audiobooks.

client:VS Code transport:stdio runtime:npm

Install Spotify MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spotify-client-id",
      "description": "SPOTIFY_CLIENT_ID",
      "password": true
    }
  ],
  "servers": {
    "spotify-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@novalux12/spotify-mcp"
      ],
      "env": {
        "SPOTIFY_CLIENT_ID": "${input:spotify-client-id}"
      }
    }
  }
}

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

Spotify MCP in other clients