Skip to content
VS Code

EchoVault Memory for VS Code

io.github.go-ports/echovault

Local-first memory for coding agents; stores decisions, bugs, and context across sessions.

client:VS Code transport:stdio runtime:oci

Install EchoVault Memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memory-home",
      "description": "MEMORY_HOME",
      "password": true
    }
  ],
  "servers": {
    "echovault": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/go-ports/echovault:0.3.3"
      ],
      "env": {
        "MEMORY_HOME": "${input:memory-home}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

EchoVault Memory in other clients