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

A developer at a computer terminal, code on screen, with Google Cloud and Vertex AI interface elements visible…
Open SourceScore: 75

Google Cloud Adds MCP Support to Vertex AI

Google Cloud's MCP support in Vertex AI lets Claude Code users query BigQuery and GCS directly. Set up MCP servers to replace custom scripts with a standardized protocol.

·1d ago·4 min read··19 views·AI-Generated·Report error
Share:
Source: news.google.comvia gn_mcp_protocolMulti-Source
How do I use Google Cloud's new MCP support in Vertex AI with Claude Code?

Use MCP servers in Vertex AI to connect Claude Code to Google Cloud services like BigQuery and Cloud Storage, enabling secure, standardized data access without custom integrations.

TL;DR

Google Cloud now supports MCP in Vertex AI, letting Claude Code users query BigQuery, GCS, and more via a single protocol.

Key Takeaways

  • Google Cloud's MCP support in Vertex AI lets Claude Code users query BigQuery and GCS directly.
  • Set up MCP servers to replace custom scripts with a standardized protocol.

What Changed — Google Cloud Adds MCP to Vertex AI

MCP Development with FireStore, Cloud Run, and Gemini CLI | by xbill ...

Google Cloud has officially added support for the Model Context Protocol (MCP) in Vertex AI, its managed AI platform. This update, announced in late July 2026, allows developers to connect AI models—including Claude Code—to Google Cloud services like BigQuery, Cloud Storage, and Vertex AI Search via standardized MCP servers.

This is a major shift. Previously, connecting Claude Code to Google Cloud required custom scripts, API wrappers, or third-party tools. Now, MCP provides a single, open protocol for data access. Google Cloud joins Anthropic, GitHub, and others in adopting MCP, making it the de facto standard for AI-tool integration.

What It Means For You — Direct Access to Enterprise Data

For Claude Code users, this means you can now query BigQuery tables, read Cloud Storage files, and search Vertex AI indexes directly from your Claude Code session—without leaving the terminal or writing boilerplate code.

Key benefits:

  • No custom integrations: MCP servers handle authentication, query formatting, and data retrieval.
  • Enterprise security: Google Cloud's IAM policies control what data MCP servers can access.
  • Reduced context bloat: MCP servers return only relevant data, not entire datasets.

This is especially powerful for developers working in data-intensive environments. Instead of dumping CSV files into your prompt, you can run live queries against production databases.

Try It Now — Setting Up MCP Servers in Vertex AI

Govern Vertex AI Generative AI / Large Language Model Access With ...

Here's how to connect Claude Code to Google Cloud using MCP:

1. Enable MCP in Vertex AI

In your Google Cloud project, navigate to Vertex AI > Model Garden and enable the MCP integration. This creates a managed MCP endpoint.

2. Configure a BigQuery MCP Server

Create a claude_mcp.json file in your project root:

{
  "mcpServers": {
    "bigquery": {
      "type": "vertex_ai",
      "project": "your-project-id",
      "location": "us-central1",
      "service": "bigquery",
      "auth": "application_default"
    },
    "cloud_storage": {
      "type": "vertex_ai",
      "project": "your-project-id",
      "location": "us-central1",
      "service": "storage",
      "bucket": "your-bucket"
    }
  }
}

3. Use It in Claude Code

Start Claude Code and ask:

"Using the bigquery MCP server, find the top 10 customers by revenue in the sales dataset for Q2 2026."

Claude Code will:

  1. Connect to the BigQuery MCP server
  2. Run the query (with your IAM permissions)
  3. Return the results directly in the chat

4. Add Vertex AI Search

For unstructured data, add:

"vertex_search": {
  "type": "vertex_ai",
  "project": "your-project-id",
  "location": "us-central1",
  "service": "search",
  "data_store": "your-data-store-id"
}

Now Claude Code can search internal documentation, support tickets, or product catalogs without manual indexing.

What's Next — Google's MCP Roadmap

This is just the beginning. Based on Google's trajectory, expect MCP support to expand to:

  • Spanner and Pub/Sub (within months)
  • Cloud Run and GKE (for deploying MCP servers as microservices)
  • Gemini API (direct MCP support for Google's own models, competing with Anthropic's Claude)

Google's investment in MCP signals a strategic shift: instead of building proprietary connectors, they're betting on an open standard. For Claude Code users, this means fewer integration headaches and more time building.

The Bottom Line

Google Cloud's MCP support in Vertex AI turns Claude Code into a direct pipeline to enterprise data. Set up your MCP servers today, and you'll replace hours of custom scripting with a single configuration file.


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 update their CLAUDE.md files to include MCP server configurations for Google Cloud services they use regularly. Instead of maintaining separate scripts for BigQuery queries or GCS file reads, define MCP servers once and let Claude Code handle the rest. This reduces context window waste from verbose API responses and eliminates manual data formatting. Second, adopt a 'security-first' approach to MCP: use Google Cloud's IAM roles to scope MCP server permissions narrowly. For example, create a service account that can only read specific BigQuery tables, not all datasets. This prevents accidental data leaks while maintaining productivity. Finally, watch for Google's expansion of MCP to more services. If you use Spanner or Pub/Sub, prepare by familiarizing yourself with the MCP server configuration syntax now. When support drops, you'll be ready to connect without delay.
Compare side-by-side
Anthropic vs Google Cloud
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