BondSeat for VS Code
io.github.saintmarksventures/bondseat
Snag hard-to-get Resy tables with automatic cancellation monitoring and scheduled release attempts.
client:VS Code
transport:stdio
runtime:npm
Install BondSeat in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bondseat-api-url",
"description": "BONDSEAT_API_URL",
"password": true
},
{
"type": "promptString",
"id": "bondseat-state-file",
"description": "BONDSEAT_STATE_FILE",
"password": true
}
],
"servers": {
"bondseat": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bondseat/mcp"
],
"env": {
"BONDSEAT_API_URL": "${input:bondseat-api-url}",
"BONDSEAT_STATE_FILE": "${input:bondseat-state-file}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs