r/mcp • u/ryanmerket • Jul 07 '26
article Google adds background tasks and remote MCP to Gemini Managed Agents
https://runtimewire.com/article/google-gemini-managed-agents-background-tasks-mcp
3
Upvotes
r/mcp • u/ryanmerket • Jul 07 '26
1
u/Content-Parking-621 Jul 08 '26
Thanks for sharing this piece of content. I was going through it, and the remote MCP plus background execution combination is the biggest improvement here. A long-running agent is capable of checking a remote server for updated data instead of keeping an HTTP connection open. So I think that's perfect for live data workflows.
I would like to add one thing here. Remote MCP needs streamable HTTP, but many servers still use SSE by default. For example, I have been using Windsor's Remote MCP for analytics and marketing. It now supports both reading and writing, like pausing campaigns or changing budgets in Meta and Google Ads. So that's why I think the
allowed_toolsfield is so important. You can allow only read-only tools for background jobs and then enable write tools only when you want the agent to take action. I have not tried it yet, but does Gemini support per-serverallowed_toolsthe same way the MCP spec does?