mcp alegra for VS Code
io.github.codespar/mcp-alegra
Alegra — cloud accounting for LATAM (Colombian-founded)
client:VS Code
transport:stdio
runtime:npm
Install mcp alegra in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "alegra-email",
"description": "ALEGRA_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "alegra-api-token",
"description": "ALEGRA_API_TOKEN",
"password": true
}
],
"servers": {
"mcp-alegra": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-alegra"
],
"env": {
"ALEGRA_EMAIL": "${input:alegra-email}",
"ALEGRA_API_TOKEN": "${input:alegra-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs