Skip to content
VS Code

tablebridge mcp for VS Code

io.github.michael-whitecapdata/tablebridge-mcp

Query a folder of CSV / Parquet / JSON files with SQL — one queryable source, read-only.

client:VS Code transport:stdio runtime:pypi

Install tablebridge mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tablebridge-data-dir",
      "description": "TABLEBRIDGE_DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tablebridge-max-rows",
      "description": "TABLEBRIDGE_MAX_ROWS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tablebridge-recursive",
      "description": "TABLEBRIDGE_RECURSIVE",
      "password": true
    }
  ],
  "servers": {
    "tablebridge-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "tablebridge"
      ],
      "env": {
        "TABLEBRIDGE_DATA_DIR": "${input:tablebridge-data-dir}",
        "TABLEBRIDGE_MAX_ROWS": "${input:tablebridge-max-rows}",
        "TABLEBRIDGE_RECURSIVE": "${input:tablebridge-recursive}"
      }
    }
  }
}

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

tablebridge mcp in other clients