AgentVault for VS Code
io.github.motiveflowllc/agentvault
Discover, verify, and connect to AI agents with E2E encrypted messaging and trust scoring.
client:VS Code
transport:stdio
runtime:npm
Install AgentVault in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentvault-agent-id",
"description": "AGENTVAULT_AGENT_ID",
"password": true
},
{
"type": "promptString",
"id": "agentvault-api-key",
"description": "AGENTVAULT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agentvault-endpoint",
"description": "AGENTVAULT_ENDPOINT",
"password": true
}
],
"servers": {
"agentvault": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agentvault/mcp-server"
],
"env": {
"AGENTVAULT_AGENT_ID": "${input:agentvault-agent-id}",
"AGENTVAULT_API_KEY": "${input:agentvault-api-key}",
"AGENTVAULT_ENDPOINT": "${input:agentvault-endpoint}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs