From 86e40913d56f7848aef91d75591e2edc89f5ff71 Mon Sep 17 00:00:00 2001 From: Bharath Elluru Date: Fri, 10 Apr 2026 17:42:44 -0700 Subject: [PATCH] feat(gemini-cli): add remote MCP configurations for BigQuery, Cloud SQL, Spanner, AlloyDB, and Knowledge Catalog --- gemini-extension.json | 47 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gemini-extension.json b/gemini-extension.json index 4f49465..493f288 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -10,6 +10,53 @@ "git+https://github.com/gemini-cli-extensions/data-cloud-ai-dev-kit.git" ], "env": {} + }, + "datacloud_bigquery_remote": { + "httpUrl": "https://bigquery.googleapis.com/mcp", + "authProviderType": "google_credentials", + "oauth": { + "scopes": [ + "https://www.googleapis.com/auth/bigquery", + "https://www.googleapis.com/auth/cloud-platform" + ] + } + }, + "datacloud_cloud-sql_remote": { + "httpUrl": "https://sqladmin.googleapis.com/mcp", + "authProviderType": "google_credentials", + "oauth": { + "scopes": [ + "https://www.googleapis.com/auth/cloud-platform" + ] + } + }, + "datacloud_spanner_remote": { + "httpUrl": "https://spanner.googleapis.com/mcp", + "authProviderType": "google_credentials", + "oauth": { + "scopes": [ + "https://www.googleapis.com/auth/spanner.admin", + "https://www.googleapis.com/auth/spanner.data" + ] + } + }, + "datacloud_alloydb_remote": { + "httpUrl": "https://alloydb.REGION.rep.googleapis.com/mcp", + "authProviderType": "google_credentials", + "oauth": { + "scopes": [ + "https://www.googleapis.com/auth/cloud-platform" + ] + } + }, + "datacloud_knowledge_catalog_remote": { + "httpUrl": "https://dataplex.googleapis.com/mcp", + "authProviderType": "google_credentials", + "oauth": { + "scopes": [ + "https://www.googleapis.com/auth/cloud-platform" + ] + } } } }