Skip to content
VS Code

memento for VS Code

com.runmemento/memento

Local-first, LLM-agnostic memory layer for AI assistants.

client:VS Code transport:stdio runtime:npm

Install memento in VS Code

.vscode/mcp.json

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

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

memento in other clients