mcp-belgium for VS Code
io.github.lacausecrypto/mcp-belgium
Single MCP server for Belgian public transport, statistics, open data, and geospatial services.
client:VS Code
transport:stdio
runtime:npm
Install mcp-belgium in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stib-api-key",
"description": "STIB_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "cbeapi-key",
"description": "CBEAPI_KEY",
"password": true
}
],
"servers": {
"mcp-belgium": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-belgium"
],
"env": {
"STIB_API_KEY": "${input:stib-api-key}",
"CBEAPI_KEY": "${input:cbeapi-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs