Google Cloud held the "Agent Advantage" conference in Sydney last week. Three hours of technical talks and demos on building AI agents at enterprise scale. The unmistakable feeling: the industry is past the hype phase and figuring out what actually works in production.
Here is what stood out.
1. The Gemini 3 Brain
10 billion tokens per minute. 78% cost reduction year-over-year. The reasoning capabilities demo was genuinely impressive — the model caught a mathematical error in a peer-reviewed physics paper that had slipped past human reviewers.
But the real story is not the benchmark numbers. It is that this is no longer experimental. Gemini 3's reasoning window, token throughput, and cost trajectory make enterprise-scale agent deployment feasible now. Teams can run serious agentic workloads without betting their entire budget on inference costs.
The gap between what was theoretically possible six months ago and what you can deploy today is substantial.
2. Grounding Is Everything
Without enterprise data, agents are just chatbots with better marketing.
One of the most useful talks broke down the three layers of grounding that actually move the needle:
- Business context layer: Vector databases for semantic search. Your agents need to understand what your company does, what your products are, what your strategy looks like. A RAG system that retrieves the right context from internal docs.
- Operational knowledge layer: Graph databases and MCP tools for accessing live operational data. Your inventory system. Your CRM. Your backend APIs. Agents that can read real-time state and make decisions based on it.
- Session memory layer: In-memory databases for conversation state. Not just "what happened earlier in this conversation" but "what decisions have we made, what constraints are we working within, what did the user already tell us."
The demo started with a shopping assistant that had none of these layers. Generic responses, no context. Then they added business context. Suddenly the assistant understood product categories and could recommend relevant items. Then operational knowledge — the agent could check inventory and availability. Then session memory — the agent remembered the customer's size preferences and filtered results accordingly.
Each layer made the experience dramatically better. Each layer is non-negotiable for production agents.
3. MCP Is Winning
Someone at the talk used the phrase "USB-C of agents" to describe the Model Context Protocol. That stuck with me.
MCP is becoming the de facto standard for how agents integrate with business systems. Google backing it (alongside Anthropic, who created it) signals this is not a passing trend. The integration ecosystem is consolidating around a single protocol.
The most elegant solution they presented was the Agent Gateway concept — a layer that auto-translates legacy APIs into MCP-compatible interfaces. You do not have to rewrite your 15-year-old systems. The gateway handles the translation. Suddenly those old systems become agent-accessible without touching the original code.
Migration just became a lot less painful.
4. Three Agentic Patterns
The taxonomy presented was clean and useful:
- Pattern 1: Function calling. The model + a set of tools. Simplest to implement. Most teams start here. Works for well-defined tasks with clear success criteria.
- Pattern 2: Agent-to-data via MCP gateway. The agent connects to databases, APIs, and enterprise systems through a standardized interface. The agent can read and reason over live operational state. Production teams are moving here. This is where reliability and observability start to matter.
- Pattern 3: Agent-to-agent mesh orchestration. Specialized agents coordinating with each other. Task planning, delegation, consensus-building across multiple systems. The frontier. Not many teams here yet, but this is where the industry is heading.
Most teams are stuck on pattern 1. Production teams have learned to move to pattern 2. The industry is heading to pattern 3.
5. The 12% Problem
Only 12% of agent projects reach production and deliver measurable business value.
Why does the other 88% fail? Three non-negotiables showed up across every talk:
- Org alignment on AI language. Your entire organization needs to speak the same dialect of AI concepts. Not everyone needs to code. But everyone — product, engineering, business — needs to understand agents, prompting, grounding, MCP, and the lifecycle of building agentic systems. Misalignment between teams kills projects silently.
- Cross-functional table. The projects that survive have business + tech + users at the table from day one. Not engineering-led. Not business-led. Integrated. User needs drive the architecture. Architecture is not an afterthought.
- Start from user needs. Do not start from "we have this cool model capability." Start from "our users waste three hours a week on this task." Design backwards from that. The most successful agent implementations are boring — they solve a real, mundane problem for someone who actually exists.
The platform layer is maturing. The bottleneck is organizational readiness, not technology.
The Best Demo
A voice agent handling car sales in multiple languages — switching between Spanish and English mid-conversation based on customer preference. Using camera input to identify objects and colors. Filtering search results based on what the camera saw. Running on Gemini with MCP tool integrations to query a live inventory system.
The gap between that demo and most production chatbots deployed today is enormous. But that is the floor now, not the ceiling. That is what "production-ready agent" looks like in 2026.
The Competitive Moat
The platform layer is maturing fast. Gemini, Claude, every LLM provider — they are converging on similar capabilities. MCP is becoming a commodity integration protocol. The models themselves are becoming more capable, more reliable, less differentiated.
The bottleneck is no longer technology. It is organizational readiness. It is whether your employees are fluent enough in AI to build on top of it. It is your data — clean, organized, accessible through MCP gateways. It is your agents — purpose-built for your business, grounded in your context, connected to your systems.
The competitive moat is no longer "which model do we use." It is "how well do we understand our own business well enough to automate it intelligently."
That is harder to copy than a new model. That is why the teams winning are not the ones with the fanciest models. They are the ones ruthlessly clear about what their agents should and should not do — and who built the observability to know when something breaks.