Skip to content
VS Code

Nuzo Memory for VS Code

io.github.fabionfsc/nuzo-memory

Local-first, auditable memory for MCP-compatible AI agents with explicit writes and SQLite storage.

client:VS Code transport:stdio runtime:npm

Install Nuzo Memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nuzo-memory-store",
      "description": "NUZO_MEMORY_STORE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nuzo-memory-scope",
      "description": "NUZO_MEMORY_SCOPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nuzo-authorized-scopes",
      "description": "NUZO_AUTHORIZED_SCOPES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nuzo-project-root",
      "description": "NUZO_PROJECT_ROOT",
      "password": true
    }
  ],
  "servers": {
    "nuzo-memory": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@nuzo/memory-mcp"
      ],
      "env": {
        "NUZO_MEMORY_STORE": "${input:nuzo-memory-store}",
        "NUZO_MEMORY_SCOPE": "${input:nuzo-memory-scope}",
        "NUZO_AUTHORIZED_SCOPES": "${input:nuzo-authorized-scopes}",
        "NUZO_PROJECT_ROOT": "${input:nuzo-project-root}"
      }
    }
  }
}

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

Nuzo Memory in other clients