Skip to content
VS Code

SAME - Stateless Agent Memory Engine for VS Code

io.github.sgx-labs/same

Persistent memory for AI coding agents. Local-first SQLite + vector search. 17 MCP tools.

client:VS Code transport:stdio runtime:npm

Install SAME - Stateless Agent Memory Engine in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vault-path",
      "description": "VAULT_PATH",
      "password": true
    }
  ],
  "servers": {
    "same": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sgx-labs/same"
      ],
      "env": {
        "VAULT_PATH": "${input:vault-path}"
      }
    }
  }
}

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

SAME - Stateless Agent Memory Engine in other clients