Google just quietly made AI voice agents significantly better, and most people haven’t noticed yet. Here’s what happened and why it matters if you’re building voice AI: Google contributed a gRPC transport package to the Model Context Protocol (MCP), the open standard that lets AI agents talk to external tools and services. On the surface that sounds like a boring infrastructure change. It isn’t. The problem it solves Every time your voice agent calls a tool, checking a calendar, looking up a customer record, fetching live data, it’smaking an MCP request. With the current default (JSON-RPC over HTTP), that costs ~9ms per call. In a chat interface, nobody notices. In a voice conversation where your agent makes 4–5 tool calls per turn, those milliseconds stack up into something the human ear does notice: a pause that feels unnatural. gRPC changes the math entirely. Instead of opening a new HTTP connection for every tool call, gRPC holds one persistent bidirectional stream open for the entire session.…