PluginBench
MCP Server
Active
MIT

io.github.Michael-WhiteCapData/tablebridge-mcp MCP Server

io.github.Michael-WhiteCapData/tablebridge-mcp

What is the io.github.Michael-WhiteCapData/tablebridge-mcp MCP server?

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

How to install io.github.Michael-WhiteCapData/tablebridge-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TABLEBRIDGE_DATA_DIR

    Directory of data files to expose as SQL tables (sandboxed).

  • TABLEBRIDGE_MAX_ROWS

    Maximum rows returned per query/preview.

  • TABLEBRIDGE_RECURSIVE

    Scan subdirectories too (1/0).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "tablebridge-mcp": {
      "command": "uvx",
      "args": [
        "tablebridge"
      ],
      "env": {
        "TABLEBRIDGE_DATA_DIR": "<YOUR_TABLEBRIDGE_DATA_DIR>",
        "TABLEBRIDGE_MAX_ROWS": "<YOUR_TABLEBRIDGE_MAX_ROWS>",
        "TABLEBRIDGE_RECURSIVE": "<YOUR_TABLEBRIDGE_RECURSIVE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "tablebridge-mcp": {
      "command": "uvx",
      "args": [
        "tablebridge"
      ],
      "env": {
        "TABLEBRIDGE_DATA_DIR": "<YOUR_TABLEBRIDGE_DATA_DIR>",
        "TABLEBRIDGE_MAX_ROWS": "<YOUR_TABLEBRIDGE_MAX_ROWS>",
        "TABLEBRIDGE_RECURSIVE": "<YOUR_TABLEBRIDGE_RECURSIVE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "tablebridge-mcp": {
      "command": "uvx",
      "args": [
        "tablebridge"
      ],
      "env": {
        "TABLEBRIDGE_DATA_DIR": "<YOUR_TABLEBRIDGE_DATA_DIR>",
        "TABLEBRIDGE_MAX_ROWS": "<YOUR_TABLEBRIDGE_MAX_ROWS>",
        "TABLEBRIDGE_RECURSIVE": "<YOUR_TABLEBRIDGE_RECURSIVE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "tablebridge-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "tablebridge"
      ],
      "env": {
        "TABLEBRIDGE_DATA_DIR": "<YOUR_TABLEBRIDGE_DATA_DIR>",
        "TABLEBRIDGE_MAX_ROWS": "<YOUR_TABLEBRIDGE_MAX_ROWS>",
        "TABLEBRIDGE_RECURSIVE": "<YOUR_TABLEBRIDGE_RECURSIVE>"
      }
    }
  }
}
Claude Code
claude mcp add tablebridge-mcp --env TABLEBRIDGE_DATA_DIR=<YOUR_TABLEBRIDGE_DATA_DIR> --env TABLEBRIDGE_MAX_ROWS=<YOUR_TABLEBRIDGE_MAX_ROWS> --env TABLEBRIDGE_RECURSIVE=<YOUR_TABLEBRIDGE_RECURSIVE> -- uvx tablebridge

Related MCP servers

Operate a k3s / Kubernetes cluster from your AI agent — safe-by-default MCP server.

1
Python
MIT
View repository →

Offload cheap work from your AI agent to a local Ollama model, at zero cloud cost.

1
Python
MIT
View repository →