Voyagier for VS Code
com.voyagier/cli
Book real travel from your agent — flights, hotels & activities behind a price-gated checkout.
client:VS Code
transport:stdio
runtime:npm
Install Voyagier in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "voyagier-token",
"description": "VOYAGIER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "voyagier-api-url",
"description": "VOYAGIER_API_URL",
"password": true
}
],
"servers": {
"cli": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@voyagier/cli"
],
"env": {
"VOYAGIER_TOKEN": "${input:voyagier-token}",
"VOYAGIER_API_URL": "${input:voyagier-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs