latam mcp for VS Code
io.github.tolomere21/latam-mcp
Peruvian public data — SUNAT RUC, BCRP FX, SEACE tenders. Sourced from official open-data.
client:VS Code
transport:stdio
runtime:npm
Install latam mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "latam-mcp-api-key",
"description": "LATAM_MCP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "latam-mcp-api-base",
"description": "LATAM_MCP_API_BASE",
"password": true
}
],
"servers": {
"latam-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@latam-mcp/mcp"
],
"env": {
"LATAM_MCP_API_KEY": "${input:latam-mcp-api-key}",
"LATAM_MCP_API_BASE": "${input:latam-mcp-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs