Skip to content
VS Code

setlist mcp for VS Code

io.github.chrischall/setlist-mcp

setlist.fm concert data for Claude — setlists, artists, venues, tours, and cities

client:VS Code transport:stdio runtime:npm

Install setlist mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "setlist-api-key",
      "description": "SETLIST_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "setlist-accept-language",
      "description": "SETLIST_ACCEPT_LANGUAGE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "setlist-session-cookie",
      "description": "SETLIST_SESSION_COOKIE",
      "password": true
    }
  ],
  "servers": {
    "setlist-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "setlist-mcp"
      ],
      "env": {
        "SETLIST_API_KEY": "${input:setlist-api-key}",
        "SETLIST_ACCEPT_LANGUAGE": "${input:setlist-accept-language}",
        "SETLIST_SESSION_COOKIE": "${input:setlist-session-cookie}"
      }
    }
  }
}

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

setlist mcp in other clients