Skip to content
VS Code

mismem for VS Code

io.github.lucasmella-stack/mismem

Cooperative persistent memory for LLMs: episodes, memories and traits over SQLite (FTS5, Hebbian)

client:VS Code transport:stdio runtime:npm

Install mismem in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mismem-db",
      "description": "MISMEM_DB",
      "password": true
    }
  ],
  "servers": {
    "mismem": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@lucasmella/mismem"
      ],
      "env": {
        "MISMEM_DB": "${input:mismem-db}"
      }
    }
  }
}

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

mismem in other clients