Skip to content
VS Code

audrey for VS Code

io.github.evilander/audrey

Local-first biological memory for coding agents: recall, consolidation, and pre-action Guard checks.

client:VS Code transport:stdio runtime:npm

Install audrey in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "audrey-data-dir",
      "description": "AUDREY_DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "audrey-agent",
      "description": "AUDREY_AGENT",
      "password": true
    }
  ],
  "servers": {
    "audrey": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "audrey"
      ],
      "env": {
        "AUDREY_DATA_DIR": "${input:audrey-data-dir}",
        "AUDREY_AGENT": "${input:audrey-agent}"
      }
    }
  }
}

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

audrey in other clients