Skip to content
VS Code

lineupify for VS Code

io.github.shreeshman/lineupify

Spotify playlists from a festival lineup, a genre, a song, a playlist or a blend. Own client ID.

client:VS Code transport:stdio runtime:npm

Install lineupify in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spotify-client-id",
      "description": "SPOTIFY_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lastfm-api-key",
      "description": "LASTFM_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "lineupify": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "lineupify-mcp"
      ],
      "env": {
        "SPOTIFY_CLIENT_ID": "${input:spotify-client-id}",
        "LASTFM_API_KEY": "${input:lastfm-api-key}"
      }
    }
  }
}

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

lineupify in other clients