getyourguide mcp for VS Code
io.github.chrischall/getyourguide-mcp
GetYourGuide tours & activities for Claude — search, details, options, and reviews
client:VS Code
transport:stdio
runtime:npm
Install getyourguide mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gyg-api-key",
"description": "GYG_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gyg-currency",
"description": "GYG_CURRENCY",
"password": true
},
{
"type": "promptString",
"id": "gyg-language",
"description": "GYG_LANGUAGE",
"password": true
}
],
"servers": {
"getyourguide-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"getyourguide-mcp"
],
"env": {
"GYG_API_KEY": "${input:gyg-api-key}",
"GYG_CURRENCY": "${input:gyg-currency}",
"GYG_LANGUAGE": "${input:gyg-language}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs