progi for VS Code
io.github.zseta/progi
MCP-native workflow engine: teach agents your processes once, they execute them consistently.
client:VS Code
transport:stdio
runtime:pypi
Install progi in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "progi-db-path",
"description": "PROGI_DB_PATH",
"password": true
}
],
"servers": {
"progi": {
"type": "stdio",
"command": "uvx",
"args": [
"progi"
],
"env": {
"PROGI_DB_PATH": "${input:progi-db-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs