ticket discovery for VS Code
io.github.wmarceau/ticket-discovery
Search and compare concert ticket prices across platforms
client:VS Code
transport:stdio
runtime:pypi
Install ticket discovery in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ticketmaster-api-key",
"description": "TICKETMASTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "seatgeek-client-id",
"description": "SEATGEEK_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "seatgeek-client-secret",
"description": "SEATGEEK_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "seatgeek-affiliate-id",
"description": "SEATGEEK_AFFILIATE_ID",
"password": true
}
],
"servers": {
"ticket-discovery": {
"type": "stdio",
"command": "uvx",
"args": [
"ticket-discovery-mcp"
],
"env": {
"TICKETMASTER_API_KEY": "${input:ticketmaster-api-key}",
"SEATGEEK_CLIENT_ID": "${input:seatgeek-client-id}",
"SEATGEEK_CLIENT_SECRET": "${input:seatgeek-client-secret}",
"SEATGEEK_AFFILIATE_ID": "${input:seatgeek-affiliate-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs