autario mcp for VS Code
io.github.autario/autario-mcp
Query 8,000+ verified open datasets (World Bank, Eurostat, FRED, SEC) with stats and charts.
client:VS Code
transport:stdio
runtime:npm
Install autario mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "autario-api-key",
"description": "AUTARIO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "autario-api-secret",
"description": "AUTARIO_API_SECRET",
"password": true
}
],
"servers": {
"autario-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"autario-mcp"
],
"env": {
"AUTARIO_API_KEY": "${input:autario-api-key}",
"AUTARIO_API_SECRET": "${input:autario-api-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs