Memory Vault for VS Code
io.github.mihaibuilds/memory-vault
Local-first AI memory layer with hybrid search. Postgres + pgvector. Self-hosted, MIT.
client:VS Code
transport:stdio
runtime:oci
Install Memory Vault in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "db-host",
"description": "DB_HOST",
"password": true
},
{
"type": "promptString",
"id": "db-port",
"description": "DB_PORT",
"password": true
},
{
"type": "promptString",
"id": "db-name",
"description": "DB_NAME",
"password": true
},
{
"type": "promptString",
"id": "db-user",
"description": "DB_USER",
"password": true
},
{
"type": "promptString",
"id": "db-password",
"description": "DB_PASSWORD",
"password": true
}
],
"servers": {
"memory-vault": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/mihaibuilds/memory-vault-mcp:1.6.0"
],
"env": {
"DB_HOST": "${input:db-host}",
"DB_PORT": "${input:db-port}",
"DB_NAME": "${input:db-name}",
"DB_USER": "${input:db-user}",
"DB_PASSWORD": "${input:db-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs