|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.bigquery-mcp-npx", |
| 4 | + "name": "BigQuery (npx)", |
| 5 | + "alias": "bigquery", |
| 6 | + "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.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/16785467?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "database" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "bigquery", |
| 14 | + "google-cloud", |
| 15 | + "gcp", |
| 16 | + "database", |
| 17 | + "sql", |
| 18 | + "analytics", |
| 19 | + "data-warehouse" |
| 20 | + ], |
| 21 | + "transport": { |
| 22 | + "type": "stdio", |
| 23 | + "command": "npx", |
| 24 | + "args": [ |
| 25 | + "-y", |
| 26 | + "@toolbox-sdk/server", |
| 27 | + "--prebuilt", |
| 28 | + "bigquery", |
| 29 | + "--stdio" |
| 30 | + ], |
| 31 | + "env": { |
| 32 | + "BIGQUERY_PROJECT": "${input:BIGQUERY_PROJECT}" |
| 33 | + }, |
| 34 | + "metadata": { |
| 35 | + "inputs": [ |
| 36 | + { |
| 37 | + "id": "BIGQUERY_PROJECT", |
| 38 | + "label": "BigQuery Project ID", |
| 39 | + "description": "Your Google Cloud project ID that contains the BigQuery datasets you want to query. Billing and queries run against this project.", |
| 40 | + "type": "text", |
| 41 | + "required": true, |
| 42 | + "placeholder": "my-gcp-project", |
| 43 | + "obtain": { |
| 44 | + "url": "https://console.cloud.google.com/projectselector2/home/dashboard", |
| 45 | + "instructions": "1. Open the Google Cloud Console\n2. Select or create a project\n3. Copy the Project ID (not the project name)", |
| 46 | + "button_label": "Open Cloud Console" |
| 47 | + } |
| 48 | + } |
| 49 | + ] |
| 50 | + } |
| 51 | + }, |
| 52 | + "auth": { |
| 53 | + "type": "none", |
| 54 | + "instructions": "Authenticate with `gcloud auth application-default login`; the server uses your local Google Cloud credentials." |
| 55 | + }, |
| 56 | + "contributor": { |
| 57 | + "name": "Google", |
| 58 | + "github": "googleapis", |
| 59 | + "url": "https://cloud.google.com/bigquery" |
| 60 | + }, |
| 61 | + "links": { |
| 62 | + "repository": "https://github.com/googleapis/genai-toolbox", |
| 63 | + "homepage": "https://cloud.google.com/bigquery", |
| 64 | + "documentation": "https://googleapis.github.io/genai-toolbox/" |
| 65 | + }, |
| 66 | + "platforms": [ |
| 67 | + "all" |
| 68 | + ], |
| 69 | + "capabilities": { |
| 70 | + "tools": true, |
| 71 | + "resources": false, |
| 72 | + "prompts": false, |
| 73 | + "read_only_mode": false |
| 74 | + }, |
| 75 | + "changelog_url": "https://github.com/googleapis/genai-toolbox/releases" |
| 76 | +} |
0 commit comments