VIVATLAS for VS Code
io.github.bobpanil/vivatlas
Self-hosted catalogue of your skills, agents and MCP servers, searchable by meaning over MCP
client:VS Code
transport:stdio
runtime:oci
Install VIVATLAS in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "secret-key",
"description": "SECRET_KEY",
"password": true
},
{
"type": "promptString",
"id": "google-api-key",
"description": "GOOGLE_API_KEY",
"password": true
}
],
"servers": {
"vivatlas": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/bobpanil/vivatlas:1.0.1"
],
"env": {
"SECRET_KEY": "${input:secret-key}",
"GOOGLE_API_KEY": "${input:google-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs