Skip to content
VS Code

mcp encrypted sqlite for VS Code

io.github.rosch100/mcp-encrypted-sqlite

MCP server for encrypted SQLite databases (SQLCipher 4) - Works with MoneyMoney, KeePass and more

client:VS Code transport:stdio runtime:oci

Install mcp encrypted sqlite in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "db-path",
      "description": "DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "db-passphrase",
      "description": "DB_PASSPHRASE",
      "password": true
    }
  ],
  "servers": {
    "mcp-encrypted-sqlite": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/rosch100/mcp-encrypted-sqlite:0.4.1"
      ],
      "env": {
        "DB_PATH": "${input:db-path}",
        "DB_PASSPHRASE": "${input:db-passphrase}"
      }
    }
  }
}

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

mcp encrypted sqlite in other clients