Skip to content
VS Code

dbridge mcp for VS Code

io.github.ugurcl/dbridge-mcp

Query SQLite, PostgreSQL, and MySQL in plain language - read-only, with column masking and limits.

client:VS Code transport:stdio runtime:npm

Install dbridge mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dbridge-config",
      "description": "DBRIDGE_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "dbridge-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "dbridge-mcp"
      ],
      "env": {
        "DBRIDGE_CONFIG": "${input:dbridge-config}"
      }
    }
  }
}

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

dbridge mcp in other clients