plantrip for VS Code
io.plantrip/plantrip
Travel planning: day-by-day itineraries, packing lists, weather insights, and trip cost estimates
client:VS Code
transport:stdio
runtime:npm
Install plantrip in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "plantrip-api-key",
"description": "PLANTRIP_API_KEY",
"password": true
}
],
"servers": {
"plantrip": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"plantrip-mcp-server"
],
"env": {
"PLANTRIP_API_KEY": "${input:plantrip-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs