惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
爱范儿
爱范儿
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 叶小钗
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - 司徒正美
博客园 - 【当耐特】
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Quiet Revolution at Google Cloud Next '26: Your Datab...
Aman Choudha · 2026-04-29 · via DEV Community

This is a submission for the Google Cloud NEXT Writing Challenge

Everyone at Google Cloud Next '26 is talking about Gemini Enterprise Agent Platform. The flashy keynote demo, the "era of the agent is here" declaration, the snowboarder analyzing his own tricks with AI. I get it. It's a great story.
But buried in the 260-announcement list is something that, for developers building real AI applications, might matter more day-to-day: Google Cloud just made it trivially easy to connect AI agents directly to your production databases via fully managed MCP servers.
No proxy. No server to host. No auth plumbing to debug at 2 AM.
Let me explain why this is a bigger deal than it sounds.

First, The Problem This Solves

If you've tried building an AI agent that operates on real data — not sample JSON, but actual operational databases — you know the pain. The agent needs to read user records, check inventory, query transaction history. And to do that, you need to:

  1. Stand up an MCP server (or run one locally)
  2. Handle authentication — API keys? OAuth? IAM? Good luck wiring it all together
  3. Manage connection pooling so your agent doesn't accidentally nuke your database with connections
  4. Keep the whole thing running, monitored, and scaled

Model Context Protocol (MCP), the open standard created by Anthropic, solves the interface problem beautifully — it gives AI models a standardized way to talk to tools and data sources. But the infrastructure problem was still on you.
That's what Google Cloud just solved.

What Was Announced
At Next '26, Google Cloud announced managed, remote MCP servers that are now generally available for:

: AlloyDB (PostgreSQL-compatible)
: Cloud SQL
: Spanner
: Firestore
: Bigtable

And in preview for Memorystore, Database Migration Service, Datastream, Database Center, and more.
There's also a brand new Developer Knowledge MCP server — which connects your IDE directly to Google's documentation, so your coding agent can answer questions and troubleshoot with live, relevant context rather than hallucinating from training data.
The setup is almost shockingly simple:

bash#

Enable the Spanner MCP endpoint — one command
gcloud beta services mcp enable spanner.googleapis.com --project=${PROJECT_ID}

That's it. No server to deploy. The MCP endpoint is live. Then in your agent or IDE config, you point to it:

json{
"mcpServers": {
"spanner": {
"url": "https://spanner.googleapis.com/mcp",
"authType": "oauth"
}
}
}

And now your agent can query your Spanner database in natural language — from Gemini CLI, Claude, ChatGPT, or any MCP-compliant client.

Why the Security Model Actually Impresses Me

My first instinct when I see "connect your AI agent to your production database" is to reach for the fire extinguisher. But Google's implementation here is thoughtful.

Authentication is handled entirely through IAM — no shared API keys floating around, no connection strings hardcoded anywhere. Agents can only access the specific tables or views the IAM policy explicitly authorizes. Every query is logged through Google Cloud's standard observability stack. Audit trails are automatic.

This means you can create a dedicated service account for your agent, grant it read-only access to exactly the tables it needs, and revoke it instantly if something goes wrong. That's the kind of security posture that makes it realistic to actually deploy this in production.

The Spanner + MCP Angle Is Particularly Interesting

Spanner's managed MCP server isn't just for SQL queries. Because Spanner now has multi-model capabilities — relational, graph, vector search, full-text — the MCP integration surfaces all of those to your agent through natural language.

Imagine querying a fraud detection graph:

"Find all accounts that received transfers from account 12345 within the last 48 hours, and check if any of them share a phone number with a flagged account."

That's a multi-hop graph traversal combined with a relational join. With the Spanner MCP server, your agent generates the SQL+GQL automatically and executes it — no manual query writing.

Google even published a codelab walking through exactly this fraud detection use case. It's worth working through if you want to see the natural-language-to-graph-query pipeline in action.

The Open Source Side: MCP Toolbox 1.0

Alongside the managed servers, Google also released MCP Toolbox for Databases v1.0 — the stable GA of their open-source MCP server that supports 40+ databases, with contributions from 10 vendors. This includes not just Google's databases but also Neo4j, PostgreSQL, MySQL, SQLite, and more.

So the story here is two-tiered:

Managed MCP ServersMCP Toolbox

1.Infrastructure Zero — Google manages it Self-hosted

2.Database support GCP portfolio 40+ including non-GCP

3.Auth -- IAM (built-in) Configurable

4.Best for -- GCP-native teams Hybrid / multi-cloud

Both are genuinely useful for different teams, and they're complementary rather than competing.

My Honest Take
The marketing around agents tends to focus on what the AI can think and decide. But agents are only as useful as what they can act on. Most enterprise value lives in operational databases — not in PDFs or chat histories. The bottleneck for practical agent deployment isn't model capability. It's data access.

What Google announced here directly attacks that bottleneck.

The criticism I'd level: this is still fairly tightly coupled to Google Cloud's own database portfolio for the managed tier. If your production database is RDS PostgreSQL, Aurora, or Cosmos DB, you're on the open source path — which means you're back to managing infrastructure yourself. That's a real limitation for a lot of teams.

And the "natural language to SQL" reliability question is always there. For analytical queries on well-defined schemas, it works remarkably well. For complex joins across poorly documented legacy schemas? Test carefully before letting an agent loose on production.

Still — the direction is right. The security model is right. And the zero-infrastructure pitch for GCP databases is genuinely compelling for teams already in the ecosystem. If your data lives in Spanner, AlloyDB, or Firestore, there's no reason not to try this today.

Getting Started Right Now
The fastest path to experimenting:

  1. Enable Spanner API in a Google Cloud project (free trial credits work):
    bash
    gcloud services enable spanner.googleapis.com

  2. Enable the MCP endpoint:
    bash
    gcloud beta services mcp enable spanner.googleapis.com --project=${PROJECT_ID}

  3. Install Gemini CLI:
    bash
    npm install -g @google/gemini-cli

  4. Configure the Spanner extension and start querying your database in natural language.
    Full walkthrough: Managed MCP Servers announcement blog · Spanner MCP Codelab

The agentic era needs agents that can actually do things. Connecting them to production data — securely, reliably, without standing up a custom server — is table stakes for that future. Google Cloud just made it significantly easier to get there.
That's worth paying attention to, even if it didn't get the keynote slot.