One of nine hosted-MCP connectors that grok.com offers publicly (GrowthBook visibility all) and the Cursor marketplace does not. The server URL matches Grok's production connector_catalog.mcp_server_url.
Registers the plugin in .cursor-plugin/marketplace.json and the root README table.
Split from #345 into one PR per plugin. #347–#353 are merged. This PR was originally stacked on coinbase #354 but is now independent and based on main; #354 can land on its own schedule.
Test plan
node scripts/validate-plugins.mjs passes on this branch
Endpoint probed for OAuth discoverability and dynamic client registration; the auth shape above is what the server actually supports
README has Install / MCP / Before you connect / What agents can do / Notes / Docs / License, with capabilities sourced from vendor docs
marketplace.json, plugin.json, and README table descriptions are identical
Logo visually reviewed at 192×192
Install from Cursor Settings → Plugins, complete sign-in, and smoke test list_dataset_ids
Notes
Backend dependency landed: anysphere/everysphere #1042504 merged 2026-09-11 (d394e3cfc). It adds bigquery.googleapis.com to MCP_OAUTH_PROVIDER_POLICIES so the backend folds in the pre-registered Google client with scope https://www.googleapis.com/auth/bigquery (the scope Google's BigQuery API and MCP docs specify; there is no BigQuery-specific read-only scope). Sign-in only works once the marketplace2 backend service is deployed at or past that commit; confirm the deploy before announcing the plugin.
Consent-screen verification of auth/bigquery on cursor-gws-prod should be confirmed; unverified, Cursor-surface users see Google's interstitial. The Grok GCP project already requests this scope for its BigQuery connector.
Grok also offers BigQuery with service-identity auth; this plugin configures only the user OAuth flow, same as gmail.
Note
Medium Risk
Enables OAuth-backed access to BigQuery where agents may run SQL including DML/DDL and billable queries, depending on the user’s GCP IAM; changes are additive marketplace wiring only.
Overview
Adds a Google Cloud BigQuery marketplace plugin so Cursor agents can use Google’s hosted BigQuery MCP at https://bigquery.googleapis.com/mcp via user OAuth (no local API keys).
The new third_party/google-cloud-bigquery package includes the standard manifest, mcp.json, README (install, IAM prerequisites, explore/query/write/job capabilities), changelog, and license. .cursor-plugin/marketplace.json and the root README plugin table register google-cloud-bigquery with the description “Explore datasets and tables and run SQL queries.”
Reviewed by Cursor Bugbot for commit 00ea25b. Bugbot is set up for automated code reviews on this repo. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
MCP
{ "mcpServers": { "google-cloud-bigquery": { "type": "http", "url": "https://bigquery.googleapis.com/mcp" } } }Stack
Split from #345 into one PR per plugin. #347–#353 are merged. This PR was originally stacked on coinbase #354 but is now independent and based on main; #354 can land on its own schedule.
Test plan
Notes
Note
Medium Risk
Enables OAuth-backed access to BigQuery where agents may run SQL including DML/DDL and billable queries, depending on the user’s GCP IAM; changes are additive marketplace wiring only.
Overview
Adds a Google Cloud BigQuery marketplace plugin so Cursor agents can use Google’s hosted BigQuery MCP at https://bigquery.googleapis.com/mcp via user OAuth (no local API keys).
The new third_party/google-cloud-bigquery package includes the standard manifest, mcp.json, README (install, IAM prerequisites, explore/query/write/job capabilities), changelog, and license. .cursor-plugin/marketplace.json and the root README plugin table register google-cloud-bigquery with the description “Explore datasets and tables and run SQL queries.”
Reviewed by Cursor Bugbot for commit 00ea25b. Bugbot is set up for automated code reviews on this repo. Configure here.