BigQuery Readonly MCP
Enables reading BigQuery data from ChatGPT using read-only SQL queries, with OAuth authentication and project-level access control.
README
BigQuery Readonly MCP
BigQuery Readonly MCP is a FastAPI-based Custom MCP server for safely querying BigQuery from ChatGPT. It is designed as a reusable internal analytics MCP: each tool accepts project_id, while the initial validation project is ice-sh.
Scope
- GitHub repository:
Growth-Management/bigquery-readonly-mcp - Cloud Run deploy project:
ice-sh - Initial BigQuery validation project:
ice-sh - Allowed email domain:
impress.co.jp - Default
maximumBytesBilled: 1GB - Default
max_results: 1000 - Default query timeout: 60 seconds
Security Model
The MCP server uses Google OAuth and BigQuery calls run with the authenticated user's access token. It does not use a service account to impersonate users for BigQuery query execution.
Users should receive the minimum required IAM permissions:
roles/bigquery.jobUseron the project where jobs are createdroles/bigquery.dataVieweron only the datasets they may inspect
The server enforces readonly SQL before execution. run_readonly_query and dry_run_query only allow one SELECT or WITH statement and reject DML, DDL, EXPORT, LOAD, grants, revokes, and procedure calls.
MCP Tools
list_projectslist_datasetslist_tablesget_table_schemadry_run_queryrun_readonly_query
All tools accept project_id where applicable. If omitted, the default is ice-sh.
Endpoints
GET /healthzGET /healthPOST /mcpGET /oauth/authorizeGET /oauth/callbackGET /.well-known/oauth-authorization-server
Use /health for Cloud Run external health checks. Cloud Run can reserve /healthz before requests reach the container, causing Google Frontend 404 responses even when the FastAPI app is healthy.
Local Development
Create a local environment and install dependencies:
python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
Set local environment variables. Do not commit real secrets.
export BASE_URL="http://localhost:8080"
export GOOGLE_OAUTH_CLIENT_ID="..."
export GOOGLE_OAUTH_CLIENT_SECRET="..."
export SESSION_SECRET="replace-with-random-value"
export ALLOWED_DOMAIN="impress.co.jp"
export DEFAULT_PROJECT_ID="ice-sh"
export MAXIMUM_BYTES_BILLED="1073741824"
export MAX_RESULTS="1000"
export QUERY_TIMEOUT_SECONDS="60"
Run the app:
uvicorn app.main:app --host 0.0.0.0 --port 8080 --reload
Run tests:
pytest
OAuth Setup
Configure a Google OAuth Web application in ice-sh:
- Consent screen: internal or equivalent organization-limited configuration
- Authorized domain:
impress.co.jp - Redirect URI:
https://<cloud-run-url>/oauth/callback - Scopes:
openidemailprofilehttps://www.googleapis.com/auth/bigquery.readonly
Store these values in Secret Manager rather than the repository:
google-oauth-client-idgoogle-oauth-client-secretbigquery-mcp-session-secret
Cloud Run Deployment
The GitHub Actions workflow expects these GitHub Secrets:
GCP_PROJECT_ID:ice-shGCP_WORKLOAD_IDENTITY_PROVIDERGCP_DEPLOY_SERVICE_ACCOUNTBASE_URL: deployed Cloud Run URL or custom domain
The deploy service account needs only deployment permissions, such as Artifact Registry write and Cloud Run deploy permissions. It is not used for BigQuery query execution.
Deployment is managed per GCP project. The initial deployment target is ice-sh; when this MCP is rolled out to another project, create that project's own Cloud Run service, Artifact Registry repository, Secret Manager secrets, Workload Identity Federation bindings, and GitHub Secrets.
See docs/cloud-run.md for the full Phase 5 deployment procedure, including required APIs, Artifact Registry, Secret Manager, manual deploy, /health, and Cloud Logging checks.
See docs/github-actions-deploy.md for the preferred GitHub Actions deployment path using Workload Identity Federation.
Initial Validation On ice-sh
Use a user account in the allowed domain with the required BigQuery IAM permissions, then verify:
- MCP connects to
/mcp - Google OAuth login succeeds
- dataset list can be retrieved from
ice-sh - table list can be retrieved
- schema can be retrieved
- dry run returns estimated bytes processed
SELECTexecutes within limits- DML and DDL are rejected before BigQuery execution
- unauthorized projects return Access Denied
- audit logs are emitted to Cloud Logging
Audit Logging
Every tool call writes a single-line JSON audit event to stdout. Cloud Run ingests stdout into Cloud Logging, where the message, event_type, severity, and tool-specific fields can be filtered.
Each audit event includes:
severitymessagetimestampevent_typeuser_emailtoolproject_iddatasettablebytes_processedsuccesserror
Some fields may be empty when the tool does not target a dataset or table, or when validation fails before a BigQuery job is created.
Example Cloud Logging filter:
jsonPayload.event_type="bigquery_mcp_tool_call"
jsonPayload.project_id="ice-sh"
Current Phase Coverage
- Phase 1: FastAPI app,
/healthz,/health,/mcp, OAuth authorize/callback skeleton, user email lookup - Phase 2: six initial BigQuery tools
- Phase 3: readonly SQL guard,
maximumBytesBilled,max_results, timeout, basic query error handling - Phase 4: structured JSON audit logs are emitted to stdout for Cloud Logging ingestion
- Phase 5 prep: Docker, env example, Secret Manager policy, and Cloud Run deployment procedure are documented; live deploy and
/healthverification still require agcloudenvironment - Phase 6 prep: GitHub Actions workflow exists; Workload Identity Federation, IAM, and GitHub Secrets setup are documented
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.