alphaportal mcp for VS Code
io.github.chrischall/alphaportal-mcp
AlphaPortal school-bus transportation for Claude — students, stops, live bus location, notifications
client:VS Code
transport:stdio
runtime:npm
Install alphaportal mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "alphaportal-refresh-token",
"description": "ALPHAPORTAL_REFRESH_TOKEN",
"password": true
}
],
"servers": {
"alphaportal-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"alphaportal-mcp"
],
"env": {
"ALPHAPORTAL_REFRESH_TOKEN": "${input:alphaportal-refresh-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs