Skip to main content

Read-only BigQuery MCP server with auto-LIMIT, dry-run cost guard, and ADC auth — for Claude, Cursor, Windsurf, Copilot, and other MCP clients.

Project description

bq-readonly-mcp

🔍 Read-only BigQuery MCP server with auto-LIMIT, dry-run cost guard, and ADC auth. Safe for LLMs to query your BigQuery — no DML, no surprises, no runaway bills.

PyPI CI Python License


✨ Why this exists

LLMs connected to BigQuery can accidentally scan terabytes if the MCP layer lets them run arbitrary SQL. bq-readonly-mcp prevents that by design: every query goes through a strict SELECT/WITH-only validator, gets an automatic LIMIT injected before it runs, and is priced via a dry-run before any bytes are billed. If the estimated cost exceeds the cap (default 1 GB), the query is refused outright — before a single byte hits your bill.

The server runs as a local stdio process under your OS account, uses Application Default Credentials, and exposes zero write operations. There is no INSERT, no UPDATE, no DELETE, no DDL — anywhere in the codebase. The only thing it can do is read, and it does that safely.


🛠️ The 7 tools

Tool What it does Use when…
list_datasets List datasets in the project, with optional name filter Starting exploration, finding what exists
list_tables List tables in a dataset, with optional name filter Drilling into a specific dataset
get_table_metadata Table type, partitioning, clustering, row count, size Checking if a table is large before querying
describe_columns Column schema for a table (no data scan) Understanding the shape of a table cheaply
get_table Full bundle: metadata + columns + 3 sample rows Onboarding to an unfamiliar table
run_query SELECT-only with auto-LIMIT, dry-run cost guard, and bytes-billed cap Running ad-hoc SQL
estimate_query_cost Standalone dry-run — returns estimated bytes and USD cost Checking query cost before running it

🚀 Quick start

Recommended — run directly via uvx (no install needed):

uvx bq-readonly-mcp --project your-project-id --location US

From PyPI (persistent install):

uv tool install bq-readonly-mcp
bq-readonly-mcp --project your-project-id --location US

From source:

git clone https://github.com/mariadb-RupeshBiswas/bq-readonly-mcp.git
cd bq-readonly-mcp
uv run bq-readonly-mcp --project your-project-id --location US

For a full walkthrough (five steps from zero), see docs/QUICKSTART.md.


🔐 Authentication

The server uses Application Default Credentials (ADC). Run this once:

gcloud auth application-default login

For non-interactive environments (CI, containers, service accounts), pass a key file:

bq-readonly-mcp --project your-project-id --key-file /path/to/service-account.json

Or set GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json.


🔌 Plug it into your editor

Full walkthroughs for each client — config file paths, JSON snippets, restart steps — are in docs/EDITOR_SETUP.md.

Covered clients: Claude Code, Claude Desktop, Cursor, Windsurf, GitHub Copilot (VS Code), Cline, Continue.dev, Zed, Gemini CLI.

Claude Code — quick example:

claude mcp add --transport stdio bq-readonly -- \
  uvx bq-readonly-mcp --project your-project-id --location US

Or add to ~/.claude.json (global) or .mcp.json (project-level):

{
  "mcpServers": {
    "bq-readonly": {
      "command": "uvx",
      "args": [
        "bq-readonly-mcp",
        "--project", "your-project-id",
        "--location", "US"
      ]
    }
  }
}

Ready-to-paste configs for all supported clients are in mcp-config-examples/.


⚙️ Configuration reference

All flags can also be set via environment variables. CLI flags take precedence over env vars; env vars take precedence over defaults.

CLI flag Env var Default Description
--project GCP_PROJECT_ID (required) GCP project to query
--location BIGQUERY_LOCATION US BigQuery processing location
--datasets BIGQUERY_ALLOWED_DATASETS (none — all allowed) Space-separated dataset allowlist; comma-separated in env var
--default-limit BIGQUERY_DEFAULT_LIMIT 50 Rows injected by auto-LIMIT
--max-limit BIGQUERY_MAX_LIMIT 10000 Hard cap on per-query LIMIT
--max-bytes-billed BIGQUERY_MAX_BYTES_BILLED 1073741824 (1 GB) Per-query bytes-billed cap
--sample-rows BIGQUERY_SAMPLE_ROWS 3 Rows returned by get_table preview
--key-file GOOGLE_APPLICATION_CREDENTIALS (uses ADC) Path to service-account JSON

🛡️ Safety model

  1. SELECT/WITH only — The SQL validator strips comments, then rejects any statement that doesn't start with SELECT or WITH, or that contains DML/DDL keywords (INSERT, UPDATE, DELETE, DROP, CREATE, MERGE, …).
  2. Auto-LIMITLIMIT N is injected if absent. The caller can raise it up to --max-limit (default 10,000).
  3. Dry-run cost guard — Every run_query call first runs a dry-run to estimate cost. Queries exceeding --max-bytes-billed are refused before any bytes are billed.
  4. Dataset allowlist — Optional --datasets flag restricts access to named datasets. A startup warning is logged when unset.
  5. Defense in depthmaximumBytesBilled is also set on the real job as a server-side backstop.

Full details and threat model → SECURITY.md


🚫 What it does NOT do

  • Write operations of any kind (INSERT, UPDATE, DELETE, DDL) — by design, forever
  • Vector / embedding search — deferred to a future release
  • Multi-project queries — one server, one GCP project
  • Job history / audit log access — privacy footgun, intentionally omitted
  • Storage API (export, streaming reads)

These are intentional omissions. v0.1 focuses on safe, read-only schema exploration and SQL queries.


🤔 vs other BigQuery MCPs

Feature bq-readonly-mcp pvoo/bigquery-mcp ecosystem
Read-only enforced ✅ validator + zero write tools Varies by fork
Dry-run cost guard ✅ refuses over-budget queries Not standard
Auto-LIMIT injection ✅ default 50, cap 10,000 Not standard
Dataset allowlist ✅ optional --datasets Not standard
ADC auth
Vector / embedding search No (v0.1) Some forks
PyPI package bq-readonly-mcp Varies

💻 Development

# Install with dev deps
uv sync --extra dev

# Run unit tests (fast, no BigQuery required)
uv run pytest tests/unit/ -q

# Run integration tests (requires ADC + BigQuery access)
uv run pytest -m integration -q

# Lint
uv run ruff check src tests

# Type check
uv run mypy src

📜 License

MIT — see LICENSE

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bq_readonly_mcp-0.1.0.tar.gz (158.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bq_readonly_mcp-0.1.0-py3-none-any.whl (23.5 kB view details)

Uploaded Python 3

File details

Details for the file bq_readonly_mcp-0.1.0.tar.gz.

File metadata

  • Download URL: bq_readonly_mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 158.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for bq_readonly_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f063d2707d959018c7acb962f7ce6bce4b2bce910c7eeea160727cab1d903f17
MD5 1884e183dba997cbf36b641f97c1c740
BLAKE2b-256 e80d4f51f7a7d6dbb438e64496aa2bb0640c6c84c92d8e766a44c22259aa566f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bq_readonly_mcp-0.1.0.tar.gz:

Publisher: publish.yml on mariadb-RupeshBiswas/bq-readonly-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bq_readonly_mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: bq_readonly_mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for bq_readonly_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c6386045aca9638207fd38227d895b5fcb53bdbb0de4840cd5b06a0041b6ae0
MD5 a59b6ac093171c903801981333033324
BLAKE2b-256 8891d88ce3f901533517c90e3cac711a10466de1677de3635d982781ebfb6e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bq_readonly_mcp-0.1.0-py3-none-any.whl:

Publisher: publish.yml on mariadb-RupeshBiswas/bq-readonly-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page