Skip to content
VS Code

chron for VS Code

io.github.sirinivask/chron

Timestamped audit log for every AI conversation — stored locally in SQLite, owned by you.

client:VS Code transport:stdio runtime:npm

Install chron in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "chron-db-path",
      "description": "CHRON_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "chron": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "chron-mcp"
      ],
      "env": {
        "CHRON_DB_PATH": "${input:chron-db-path}"
      }
    }
  }
}

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

chron in other clients