Skip to content
VS Code

memharness for VS Code

io.github.las7/memharness

Bi-temporal, provenance-carrying long-term memory for AI agents, in one SQLite file.

client:VS Code transport:stdio runtime:npm

Install memharness in VS Code

.vscode/mcp.json

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

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

memharness in other clients