bitatlas for VS Code
io.github.bitatlas-group/bitatlas
Zero-knowledge encrypted storage for humans and AI agents. Client-side AES-256-GCM, EU-hosted.
client:VS Code
transport:stdio
runtime:npm
Install bitatlas in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bitatlas-api-key",
"description": "BITATLAS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "bitatlas-master-key",
"description": "BITATLAS_MASTER_KEY",
"password": true
},
{
"type": "promptString",
"id": "bitatlas-api-url",
"description": "BITATLAS_API_URL",
"password": true
},
{
"type": "promptString",
"id": "bitatlas-web-url",
"description": "BITATLAS_WEB_URL",
"password": true
}
],
"servers": {
"bitatlas": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bitatlas/mcp-server"
],
"env": {
"BITATLAS_API_KEY": "${input:bitatlas-api-key}",
"BITATLAS_MASTER_KEY": "${input:bitatlas-master-key}",
"BITATLAS_API_URL": "${input:bitatlas-api-url}",
"BITATLAS_WEB_URL": "${input:bitatlas-web-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs