pointsyeah for VS Code
com.pulsemcp/pointsyeah
MCP server for searching award flights and travel deals via PointsYeah.
client:VS Code
transport:stdio
runtime:npm
Install pointsyeah in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pointsyeah-refresh-token",
"description": "POINTSYEAH_REFRESH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "enabled-toolgroups",
"description": "ENABLED_TOOLGROUPS",
"password": true
}
],
"servers": {
"pointsyeah": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"pointsyeah-mcp-server"
],
"env": {
"POINTSYEAH_REFRESH_TOKEN": "${input:pointsyeah-refresh-token}",
"ENABLED_TOOLGROUPS": "${input:enabled-toolgroups}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs