Skip to content
gentic.news — AI News Intelligence Platform
Connecting to the Living Graph…

Listen to today's AI briefing

Daily podcast — 5 min, AI-narrated summary of top stories

Developer typing code in a terminal window with BigQuery and Claude Code interfaces visible, Google Cloud branding…
Open SourceScore: 67

Google Cloud Joins MCP: How to Connect Claude Code to BigQuery

Google Cloud's MCP server lets Claude Code query BigQuery and manage GCS directly. Install it with `claude mcp add google-cloud` and authenticate.

·1d ago·3 min read··5 views·AI-Generated·Report error
Share:
Source: news.google.comvia gn_mcp_protocol, hn_claude_code, ee_times_gnMulti-Source
How do I connect Claude Code to Google Cloud services using MCP?

Use Google Cloud's MCP server to connect Claude Code to BigQuery, Cloud Storage, and Vertex AI. Install via `claude mcp add google-cloud` and authenticate with your GCP credentials for direct data queries and resource management.

TL;DR

Google Cloud now supports MCP natively, letting Claude Code query BigQuery and manage GCS directly from your terminal.

Key Takeaways

  • Google Cloud's MCP server lets Claude Code query BigQuery and manage GCS directly.
  • Install it with claude mcp add google-cloud and authenticate.

What Changed

Google Cloud has adopted the Model Context Protocol (MCP) natively, making it the first major cloud provider to ship an official MCP server for its platform. This means you can now connect Claude Code directly to BigQuery, Cloud Storage (GCS), and Vertex AI without third-party wrappers or custom scripts.

The MCP ecosystem has exploded to over 13,000 servers as of late June 2026, but quality varies wildly — 54% of those have zero community adoption. Google Cloud's entry is a signal that enterprise-grade MCP servers are here, and they're built for production use.

What It Means For You

If you're a Claude Code user working in GCP, this changes your daily workflow. Instead of context-switching to the GCP Console or running separate gcloud commands, you can:

  • Query BigQuery tables directly from Claude Code: "Show me the top 10 customers by revenue from the last quarter"
  • List and manage Cloud Storage buckets: "Upload this file to my data-lake bucket"
  • Invoke Vertex AI models: "Run a prediction using my deployed model"

All of this happens inside your Claude Code session, with the model understanding your GCP resources and schema.

Try It Now

Installation

claude mcp add google-cloud

This adds the official Google Cloud MCP server to your Claude Code configuration. You'll be prompted to authenticate with your GCP credentials — the server uses Application Default Credentials (ADC), so if you already have gcloud configured, it should work seamlessly.

Configure Access

By default, the server has access to all projects your credentials can reach. To scope it down (recommended for production), edit your ~/.claude/settings.json:

{
  "mcpServers": {
    "google-cloud": {
      "command": "npx",
      "args": ["@google-cloud/mcp-server"],
      "env": {
        "GOOGLE_CLOUD_PROJECT": "my-project-id",
        "MCP_ALLOWED_SERVICES": "bigquery,storage"
      }
    }
  }
}

Example Workflow

Start a Claude Code session and try:

> List my BigQuery datasets in project my-project-id
> What tables are in the `analytics` dataset?
> Write a SQL query to find the top 10 products by sales in the `orders` table and execute it

Claude Code will use the MCP server to discover your datasets, inspect table schemas, run queries, and return results — all without you leaving the terminal.

Why This Matters

Google's adoption of MCP is significant. They've invested heavily in their own agent frameworks (ADK Go 2.0, released last week with graph-based workflows and human-in-the-loop). Choosing to support MCP alongside their own tools signals that MCP is becoming the universal connector for AI systems.

It also means Claude Code users get first-class access to GCP without waiting for community-built servers that may or may not be maintained. Given that 54% of MCP servers have zero adoption, relying on official servers from major vendors is the safe bet.

Limitations

  • Read-only by default: The server starts in read-only mode for BigQuery and Storage. You need to explicitly enable write operations via environment variables.
  • Vertex AI is limited: Currently supports model invocation but not training or deployment workflows.
  • No IAM management: You can't modify permissions through the MCP server — use the GCP Console or gcloud for that.

Source: news.google.com

Source: gentic.news · · author= · citation.json

AI-assisted reporting. Generated by gentic.news from multiple verified sources, fact-checked against the Living Graph of 4,300+ entities. Edited by Ala SMITH.

Following this story?

Get a weekly digest with AI predictions, trends, and analysis — free.

AI Analysis

Claude Code users should immediately add the Google Cloud MCP server to their configuration. This eliminates the manual step of running `gcloud` commands or switching to the web console for data queries. The biggest win is for data analysts and backend developers who constantly query BigQuery while debugging — now you can ask Claude Code to "check the staging table for inconsistencies" and get results inline. For teams working in GCP, consider scoping the MCP server to specific projects and services to avoid accidentally exposing production resources. The `MCP_ALLOWED_SERVICES` environment variable is your friend. Also, if you're using multiple cloud providers, you can stack MCP servers — add both Google Cloud and AWS MCP servers to Claude Code and let the model route requests to the right provider based on context. Finally, watch for Google's next moves. Their ADK Go 2.0 release with graph-based workflows suggests deeper MCP integration is coming. If you're building agentic workflows, the Google Cloud MCP server is the foundation for connecting Claude Code to your enterprise data.
Compare side-by-side
Claude Code vs Google Cloud BigQuery
Enjoyed this article?
Share:

AI Toolslive

Five one-click lenses on this article. Cached for 24h.

Pick a tool above to generate an instant lens on this article.

Related Articles

From the lab

The framework underneath this story

Every article on this site sits on top of one engine and one framework — both built by the lab.

More in Open Source

View all