Skip to content
VS Code

llm kosh for VS Code

io.github.rastogivaibhav/llm-kosh

Local-first AI memory cartridge with persistent MCP memory for Claude via SQLite FTS5.

client:VS Code transport:stdio runtime:pypi

Install llm kosh in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cartridge-workspace",
      "description": "CARTRIDGE_WORKSPACE",
      "password": true
    }
  ],
  "servers": {
    "llm-kosh": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "llm-kosh"
      ],
      "env": {
        "CARTRIDGE_WORKSPACE": "${input:cartridge-workspace}"
      }
    }
  }
}

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

llm kosh in other clients