Almega for VS Code
io.github.almega-ai/almega-mcp
The immutable delegation frame for AI agents: gate any sensitive action, human-in-the-loop.
client:VS Code
transport:stdio
runtime:pypi
Install Almega in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "almega-backend",
"description": "ALMEGA_BACKEND",
"password": true
},
{
"type": "promptString",
"id": "stripe-secret-key",
"description": "STRIPE_SECRET_KEY",
"password": true
}
],
"servers": {
"almega-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"almega-mcp"
],
"env": {
"ALMEGA_BACKEND": "${input:almega-backend}",
"STRIPE_SECRET_KEY": "${input:stripe-secret-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs