MCP Dados Brasil for VS Code
io.github.lucianoon/mcp-dados-br
Servidor MCP com dados oficiais brasileiros: IBGE, Banco Central, INMET, Câmara e Senado.
client:VS Code
transport:stdio
runtime:pypi
Install MCP Dados Brasil in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "inmet-token",
"description": "INMET_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "mcp-log-level",
"description": "MCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"mcp-dados-br": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-dados-br"
],
"env": {
"INMET_TOKEN": "${input:inmet-token}",
"MCP_LOG_LEVEL": "${input:mcp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs