demipass for VS Code
com.dustforge/demipass
Credential custody for agents: use secrets blind (ssh/http/smtp/git/db), never in context.
client:VS Code
transport:stdio
runtime:npm
Install demipass in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "demipass-token",
"description": "DEMIPASS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "demipass-url",
"description": "DEMIPASS_URL",
"password": true
}
],
"servers": {
"demipass": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"demipass"
],
"env": {
"DEMIPASS_TOKEN": "${input:demipass-token}",
"DEMIPASS_URL": "${input:demipass-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs