From d63d14168f54890784b14b6613513533649abb50 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 25 Jun 2026 11:11:55 +0800 Subject: [PATCH] Add BigQuery MCP server Signed-off-by: Mohammod Al Amin Ashik Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ --- servers/com.bigquery-mcp-npx.json | 76 +++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 servers/com.bigquery-mcp-npx.json diff --git a/servers/com.bigquery-mcp-npx.json b/servers/com.bigquery-mcp-npx.json new file mode 100644 index 0000000..be46aa2 --- /dev/null +++ b/servers/com.bigquery-mcp-npx.json @@ -0,0 +1,76 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.bigquery-mcp-npx", + "name": "BigQuery (npx)", + "alias": "bigquery", + "description": "Query and explore Google BigQuery datasets via the MCP Toolbox for Databases prebuilt BigQuery tools. Exposes tools to list datasets and tables, inspect schemas, and execute SQL. Runs locally via npx and authenticates with your Google Cloud Application Default Credentials.", + "logo": "https://avatars.githubusercontent.com/u/16785467?v=4", + "schema_version": "2.1", + "categories": [ + "database" + ], + "tags": [ + "bigquery", + "google-cloud", + "gcp", + "database", + "sql", + "analytics", + "data-warehouse" + ], + "transport": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@toolbox-sdk/server", + "--prebuilt", + "bigquery", + "--stdio" + ], + "env": { + "BIGQUERY_PROJECT": "${input:BIGQUERY_PROJECT}" + }, + "metadata": { + "inputs": [ + { + "id": "BIGQUERY_PROJECT", + "label": "BigQuery Project ID", + "description": "Your Google Cloud project ID that contains the BigQuery datasets you want to query. Billing and queries run against this project.", + "type": "text", + "required": true, + "placeholder": "my-gcp-project", + "obtain": { + "url": "https://console.cloud.google.com/projectselector2/home/dashboard", + "instructions": "1. Open the Google Cloud Console\n2. Select or create a project\n3. Copy the Project ID (not the project name)", + "button_label": "Open Cloud Console" + } + } + ] + } + }, + "auth": { + "type": "none", + "instructions": "Authenticate with `gcloud auth application-default login`; the server uses your local Google Cloud credentials." + }, + "contributor": { + "name": "Google", + "github": "googleapis", + "url": "https://cloud.google.com/bigquery" + }, + "links": { + "repository": "https://github.com/googleapis/genai-toolbox", + "homepage": "https://cloud.google.com/bigquery", + "documentation": "https://googleapis.github.io/genai-toolbox/" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + }, + "changelog_url": "https://github.com/googleapis/genai-toolbox/releases" +}