LIVE
Google AIGoogle AI Adds Background Tasks and Remote MCP to Gemini Agents·HuggingFaceHugging Face Models Now Deploy to SageMaker in One Click·DeepMindGoogle DeepMind and A24 partner on AI filmmaking research·Google AIGoogle's Gemini 3.0 Brings On-Device Reasoning to Pixel 16·OpenAIChatGPT adoption surges globally, OpenAI Signals data reveals·DeepMindDeepMind Launches Nano Banana 2 Lite and Gemini Omni Flash·HuggingFaceScarfBench: New Benchmark Tests AI Agents on Java Migrations·OpenAIOpenAI Report Maps AI's Impact on European Jobs·OpenAIOpenAI Previews GPT-5.6 Sol: Next-Gen Coding and Safety·DeepMindDeepMind gives Gemini 3.5 Flash desktop control·Google AIGoogle Finance exits beta with new Android app·HuggingFaceRun vLLM on HuggingFace Jobs with One Command·HuggingFaceNVIDIA NeMo AutoModel Automates Fine-Tuning, Cuts Time by 40%·OpenAIOpenAI research: AI agents extend work beyond simple tasks·HuggingFaceHuggingFace launches CUGA: lightweight harness for agentic apps·OpenAIOmio Uses OpenAI to Build Conversational Travel Experiences·HuggingFacePP-OCRv6 Arrives on Hugging Face: 50 Languages, Tiny to Medium Models·OpenAISamsung equips 100,000+ employees with ChatGPT Enterprise·OpenAIOpenAI Rolls Out Spend Controls and Analytics for ChatGPT Enterprise·HuggingFaceMosaicLeaks Benchmark Exposes Research Agents' Inability to Keep Secrets·Google AIGoogle AI Adds Background Tasks and Remote MCP to Gemini Agents·HuggingFaceHugging Face Models Now Deploy to SageMaker in One Click·DeepMindGoogle DeepMind and A24 partner on AI filmmaking research·Google AIGoogle's Gemini 3.0 Brings On-Device Reasoning to Pixel 16·OpenAIChatGPT adoption surges globally, OpenAI Signals data reveals·DeepMindDeepMind Launches Nano Banana 2 Lite and Gemini Omni Flash·HuggingFaceScarfBench: New Benchmark Tests AI Agents on Java Migrations·OpenAIOpenAI Report Maps AI's Impact on European Jobs·OpenAIOpenAI Previews GPT-5.6 Sol: Next-Gen Coding and Safety·DeepMindDeepMind gives Gemini 3.5 Flash desktop control·Google AIGoogle Finance exits beta with new Android app·HuggingFaceRun vLLM on HuggingFace Jobs with One Command·HuggingFaceNVIDIA NeMo AutoModel Automates Fine-Tuning, Cuts Time by 40%·OpenAIOpenAI research: AI agents extend work beyond simple tasks·HuggingFaceHuggingFace launches CUGA: lightweight harness for agentic apps·OpenAIOmio Uses OpenAI to Build Conversational Travel Experiences·HuggingFacePP-OCRv6 Arrives on Hugging Face: 50 Languages, Tiny to Medium Models·OpenAISamsung equips 100,000+ employees with ChatGPT Enterprise·OpenAIOpenAI Rolls Out Spend Controls and Analytics for ChatGPT Enterprise·HuggingFaceMosaicLeaks Benchmark Exposes Research Agents' Inability to Keep Secrets·
Back
Google AI Adds Background Tasks and Remote MCP to Gemini Agents
Product/Google AI

Google AI Adds Background Tasks and Remote MCP to Gemini Agents

GA

Google AI

July 8, 2026

3 MIN

Original source

blog.google — read the full announcement →

Managed Agents Get Persistent Workflows

Google AI just rolled out significant upgrades to Managed Agents within the Gemini API. Developers can now spin up agents that run background tasks — think long-running data pipelines, scheduled checks, or asynchronous API calls — without blocking the main thread. More interestingly, they've added support for the remote Model Context Protocol (MCP). That means your agent can connect to external tools and data sources over the network, not just locally. The announcement came as a blog post and API update, with no teaser or hype train. Just hard features: state persistence, callback endpoints, and a new agent lifecycle model. If you've been building with Gemini, this is the missing piece for production-grade autonomy.

Why This Matters Right Now

Up until now, most agent frameworks — including Google's — were essentially fancy request-response loops. You prompted, the model returned, you looped. That works for simple tasks but falls apart for anything that needs time: monitoring a stock price, crawling a website, or orchestrating a multi-step approval process. OpenAI's Assistants API has offered thread persistence for a while, but it lacked a clean way to run tasks in the background. Google's move with Managed Agents directly addresses that gap. Remote MCP is the bigger deal though. It lets your Gemini agent talk to any MCP-compliant server — databases, analytics engines, even other AI models — over gRPC or HTTP. That's not just convenience; it's an architectural shift. Suddenly, your agent isn't a chatbot — it's a platform.

What This Actually Unlocks for Developers

Here's the concrete impact: imagine you're building a customer support agent that needs to query a CRM, check order status, and then escalate via Slack — all while the user waits for a final response. With background tasks, you can fire off the CRM query, let the agent keep listening, and merge results when ready. No polling, no fake streaming. The remote MCP part means your agent can call into a legacy database or a cloud function without writing custom middleware. If you're running a 50-person startup and paying for per-token API calls, a 40% reduction in round trips is not a rounding error — it's real savings. And reliability improves because background tasks have retry logic built in. Honestly, the most interesting part isn't the tech itself — it's that Google published a clear pattern for agent persistence. That's the sort of thing that matures an ecosystem.

The Blind Spots and Open Questions

Of course, no launch is perfect. The blog post glosses over pricing for background task execution. Are developers charged for idle time? What about network egress for remote MCP calls? Google's documentation says tasks can run 'up to 24 hours', but there's no mention of concurrency limits or how many simultaneous background tasks a single agent can spin up. Then there's the reliability question: if a background task fails midway, what's the retry policy? Can you set custom error handlers? Also, Managed Agents are currently in preview — always a red flag for production workloads. And remote MCP depends on the server side implementing the protocol correctly. If your data source doesn't support MCP, you're back to custom connectors. Google says more details are coming, but for now, early adopters should expect a few rough edges.

Related video

Watch explainers and coverage of this topic on YouTube.

Search on YouTube

Frequently Asked Questions

What are Managed Agents in the Gemini API?

Managed Agents are server-side agent instances that can maintain state, handle multiple turns, and now run background tasks. They're designed for production use, with built-in memory and tool integration, so you don't have to manage the agent loop yourself.

How do background tasks work exactly?

You can define a task that runs asynchronously — like querying a database or generating a report — while the agent remains responsive. When the task completes, it sends a callback with results. This avoids blocking the conversation and allows for longer operations.

What is remote Model Context Protocol (MCP)?

MCP is an open protocol for connecting AI models to external tools and data sources. Remote MCP extends this to network-accessible servers, so your Gemini agent can call services like a CRM, analytics engine, or other AI models over gRPC or HTTP.

How does this compare to OpenAI's Assistants API?

Both offer persistent agents, but Google's new feature includes explicit background tasks and remote MCP support, which OpenAI doesn't have natively. OpenAI's Assistants have thread persistence, but they lack a standardized protocol for external tool connectivity and async operations.

When will Managed Agents be generally available and what will it cost?

The feature is currently in preview, with no announced GA date. Pricing details for background tasks and remote MCP have not been fully disclosed — expect per-call pricing similar to the existing Gemini API, but idle or callback charges remain unclear.

↑ SWIPE FOR NEXT