Skip to content
VS Code

engram for VS Code

io.github.kael-bit/engram

Hierarchical memory for AI agents. Three-layer (buffer/working/core) with decay and promotion.

client:VS Code transport:stdio runtime:npm

Install engram in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "engram-url",
      "description": "ENGRAM_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "engram-api-key",
      "description": "ENGRAM_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "engram": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "engram-rs-mcp"
      ],
      "env": {
        "ENGRAM_URL": "${input:engram-url}",
        "ENGRAM_API_KEY": "${input:engram-api-key}"
      }
    }
  }
}

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

engram in other clients