Back to TechSheets
Google Gemini Managed Agents & OpenAI Presence: The Agentic Infrastructure Shift

Google Gemini Managed Agents & OpenAI Presence: The Agentic Infrastructure Shift

Thanga MariappanSenior Architect
5 min read
Jul 23, 2026

The Shift from Completion APIs to Managed Agent Infrastructures

Today is Thursday, July 23, 2026, and the front-end architecture landscape is undergoing a fundamental pivot. Over the past three years, technical teams spent substantial engineering hours building custom orchestration state machines, client-side retry loops, vector database syncs, and manual tool-calling pipelines around basic /v1/chat/completions endpoints.

That custom plumbing is rapidly becoming obsolete. The latest announcements from Google AI and OpenAI mark an industry-wide transition toward Managed Agent Infrastructures. Big Tech is pushing state management, background execution, and tool execution protocols out of our client applications and directly into managed cloud agent orchestration layers.

Here is a technical news analysis of the most critical announcements released today and what they mean for system architects and senior front-end engineers.


1. Google Expands Gemini API Managed Agents: Remote MCP and Background Execution

What Happened

Google AI announced a major update to Managed Agents in the Gemini API. The update introduces two crucial capabilities for production application developers:

  1. Native Support for Remote Model Context Protocol (MCP): Developers can now link agents directly to remote MCP servers, decoupling contextual tool execution from client-side execution environments.
  2. Long-Running Background Tasks: Agents can now execute multi-step asynchronous tasks in the background without requiring continuous HTTP connection persistence or manual client-side polling loops.

Why It Matters for Developers

Until now, connecting an LLM to external APIs via MCP meant your backend or client application acted as the intermediary. If a user initiated a task that required five tool executions and three third-party API calls, your application had to maintain connection state, parse intermediate JSON payloads, handle timeouts, and manage token limits across every iteration.

With remote MCP integrated into Gemini's Managed Agents:

  • Decoupled Tool Execution: Gemini orchestrates calls directly to your authenticated remote MCP endpoints.
  • Zero Client Overhead: Long-running workflows—such as background data analysis or automated system provisioning—happen server-side at the model level.
  • Stateless Front-Ends: Front-end applications transition from heavy state orchestrators to light subscriber interfaces using Server-Sent Events (SSE) or WebSockets.

Code Example: Configuring a Remote MCP Agent

Here is how you configure a managed agent task targeting a remote MCP server in Node.js:

typescript import { GeminiAgentClient } from '@google/generative-ai-agents'; const agentClient = new GeminiAgentClient({ apiKey: process.env.GEMINI_API_KEY, }); async function triggerAsyncSystemDiagnostic(userId: string) { // Dispatch a managed background task attached to a remote MCP endpoint const task = await agentClient.createManagedTask({ agentId: 'agent-system-diagnostics-v1', executionMode: 'background', mcpServers: [ { name: 'telemetry-service', url: 'https://mcp.internal.net/v1/telemetry', headers: { Authorization: `Bearer ${process.env.INTERNAL_MCP_TOKEN}`, }, }, ], input: { userContext: userId, instruction: 'Analyze recent cluster metrics and compile an incident draft.', }, }); return { taskId: task.id, status: task.status }; }


2. OpenAI Introduces "Presence" for Enterprise Agent Deployment

What Happened

OpenAI introduced OpenAI Presence, an enterprise-grade agent platform designed to deploy trusted voice and chat agents for customer and internal workflows. Alongside this platform release, OpenAI highlighted enterprise case studies—including NTT DATA Group, which utilized ChatGPT Enterprise and Codex to scale AI adoption across 9,000 employees and reduce system incident analysis time to 30 minutes.

Why It Matters for Developers

OpenAI Presence signals that voice and ambient agent interfaces are officially shifting from experimental web experiments into standard enterprise architecture.

For front-end engineers:

  • Low-Latency Voice Pipelines: Integrating voice agents historically required complex WebRTC piping, STT (Speech-to-Text), model evaluation, and TTS (Text-to-Speech) chaining. Presence abstracts this stack into unified enterprise SDKs.
  • Codex Integration for Internal Tooling: The NTT DATA precedent shows a clear pattern: enterprises are no longer building generic chatbots; they are building domain-specific internal diagnostic interfaces powered by Codex.

Structural Impact: Front-End Architecture in Mid-2026

Comparing today's announcements highlights a distinct shift in how software is constructed:

| Feature Focus | The 2024-2025 Approach | The July 2026 Paradigm | | :--- | :--- | :--- | | Tool Execution | Client/Serverless app invokes functions manually | Remote MCP executed directly by Managed Agents | | Task Execution | Short HTTP timeouts; complex client re-hydration | Background tasks native to the AI API runtime | | UI Paradigm | Custom Chat UI with custom rendering | Multi-modal (Voice/Text) via unified agent platforms | | Enterprise Scale | Custom wrapper scripts around completions | Managed platforms like OpenAI Presence & Gemini Agents |


Key Takeaways

  1. State Orchestration is Moving to the Cloud Runtime: Both Google and OpenAI are turning agent execution into standard managed services. Writing custom client-side orchestration state machines is becoming tech debt.
  2. Remote MCP is the Modern API Standard: Support for remote Model Context Protocols means your microservices should expose standardized MCP endpoints, not just traditional REST/GraphQL endpoints for agent consumption.
  3. Asynchronous Background Agents are Production Ready: Google's background execution support in Gemini API proves that AI interactions are moving away from synchronous prompt-response pairs into event-driven background processing.

What You Should Do Today

  1. Audit Your Tool-Calling Layer: If your application uses manual tool-calling pipelines, evaluate moving your tools to an MCP-compliant endpoint that can be consumed directly by Google's Managed Agents or similar agent platforms.
  2. Expose Health & Telemetry via Remote MCP: Abstract internal APIs so agents can consume them securely without exposing internal database structures directly to the client layer.
  3. Refactor Front-End State Management: Transition UI state logic from managing token streams and step-by-step function calling to subscribing to background task completion IDs.

Bottom Line

The announcements made today on July 23, 2026, confirm that the industry has officially moved past raw prompt engineering and client-side agent frameworks. With Google natively executing Remote MCP in background tasks and OpenAI offering packaged enterprise agent engines like Presence, our job as front-end architects is no longer orchestrating models—it is building lean, accessible, and responsive user interfaces that tap into managed cloud agent runtimes.