mcp nbb for VS Code
io.github.lacausecrypto/mcp-nbb
MCP server for the National Bank of Belgium SDMX statistical API (221 dataflows).
client:VS Code
transport:stdio
runtime:pypi
Install mcp nbb in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nbb-log-level",
"description": "NBB_LOG_LEVEL",
"password": true
},
{
"type": "promptString",
"id": "nbb-log-format",
"description": "NBB_LOG_FORMAT",
"password": true
},
{
"type": "promptString",
"id": "nbb-http-cache-enabled",
"description": "NBB_HTTP_CACHE_ENABLED",
"password": true
}
],
"servers": {
"mcp-nbb": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-nbb"
],
"env": {
"NBB_LOG_LEVEL": "${input:nbb-log-level}",
"NBB_LOG_FORMAT": "${input:nbb-log-format}",
"NBB_HTTP_CACHE_ENABLED": "${input:nbb-http-cache-enabled}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs