Skip to content
VS Code

Inkwell for VS Code

io.github.veronchenko/inkwell-memory

Persistent memory for AI agents: Markdown entries, hybrid search, typed graph links

client:VS Code transport:stdio runtime:oci

Install Inkwell in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "inkwell-data-path",
      "description": "INKWELL_DATA_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "inkwell-enable-dashboard",
      "description": "INKWELL_ENABLE_DASHBOARD",
      "password": true
    }
  ],
  "servers": {
    "inkwell-memory": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/foreigndmitryi/inkwell-memory:0.14.0"
      ],
      "env": {
        "INKWELL_DATA_PATH": "${input:inkwell-data-path}",
        "INKWELL_ENABLE_DASHBOARD": "${input:inkwell-enable-dashboard}"
      }
    }
  }
}

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

Inkwell in other clients