bolsai mcp for VS Code
io.github.viniciuslazzari/bolsai-mcp
Brazilian stock market data (B3, CVM, BCB) for AI assistants: quotes, fundamentals, dividends, FIIs.
client:VS Code
transport:stdio
runtime:pypi
Install bolsai mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bolsai-api-key",
"description": "BOLSAI_API_KEY",
"password": true
}
],
"servers": {
"bolsai-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"bolsai-mcp"
],
"env": {
"BOLSAI_API_KEY": "${input:bolsai-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs