Skip to content
VS Code

Memory Kernel for VS Code

io.github.artem362/memory-kernel

Local-first memory for AI agents: SQLite FTS5, deterministic recall, no vector DB, no cloud.

client:VS Code transport:stdio runtime:pypi

Install Memory Kernel in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memory-kernel-db",
      "description": "MEMORY_KERNEL_DB",
      "password": true
    }
  ],
  "servers": {
    "memory-kernel": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "amormorri-memory-kernel"
      ],
      "env": {
        "MEMORY_KERNEL_DB": "${input:memory-kernel-db}"
      }
    }
  }
}

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

Memory Kernel in other clients