Operated by Google (Project Mariner)
Google-Agent is Google's new user-triggered agentic crawler that navigates websites and performs actions (like filling forms, clicking buttons, and browsing pages) on behalf of users via products like Project Mariner.
Google-Agent is Google's new user-triggered agentic crawler that navigates websites and performs actions (like filling forms, clicking buttons, and browsing pages) on behalf of users via products like Project Mariner.
Unlike traditional crawlers that simply index content, Google-Agent is an agentic bot — it takes real actions on your site at the direction of a human user. It can fill out forms, navigate multi-step workflows, and interact with your site's UI elements. Each interaction creates a log event in your server logs, giving you data on how Google's AI agents engage with your website.
Why this matters for WebMCP: If you see significant Google-Agent traffic in your logs, it's a direct data point showing that users are sending AI agents to interact with your site. This makes implementing WebMCP (Machine-Callable Protocols) a higher priority — you'll want structured endpoints that AI agents can use efficiently.
Google-Agent uses IP ranges from user-triggered-agents.json and comes in both mobile and desktop variants:
• Mobile: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/W.X.Y.Z Mobile Safari/537.36 (compatible; Google-Agent; +https://developers.google.com/crawling/docs/crawlers-fetchers/google-agent)
• Desktop: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Google-Agent; +https://developers.google.com/crawling/docs/crawlers-fetchers/google-agent) Chrome/W.X.Y.Z Safari/537.36
<code>User-agent: Google-Agent</code> — This is a user-triggered fetcher. Unlike traditional crawlers, it acts on behalf of real users via products like Project Mariner. Blocking it won't affect SEO, but it may prevent Google's AI agents from completing user-requested tasks on your site.
user-triggered-agents.json.
**Strategic value:** Allowing Google-Agent gives you real data on how AI agents are interacting with your site. If you see significant traffic, it's a strong signal that implementing WebMCP should be a priority. Use your AI crawler checker free tool to monitor its access.Google-Agent is fundamentally different from traditional crawlers. It's an agentic bot that takes actions on your site.
Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/W.X.Y.Z Mobile Safari/537.36 (compatible; Google-Agent; +https://developers.google.com/crawling/docs/crawlers-fetchers/google-agent)
Desktop: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Google-Agent; +https://developers.google.com/crawling/docs/crawlers-fetchers/google-agent) Chrome/W.X.Y.Z Safari/537.36
The W.X.Y.Z is replaced with the actual Chrome version number./robots.txt file:
User-agent: Google-Agent Disallow: /This instructs Google-Agent not to perform any agentic actions on your site. For partial blocking (e.g., protect checkout but allow browsing):
User-agent: Google-Agent Disallow: /checkout/ Disallow: /account/ Allow: /
Google-Agent:
grep -i "Google-Agent" /var/log/nginx/access.logYou can verify legitimate requests by checking the source IP against Google's
user-triggered-agents.json IP range list. Google-Agent interactions create distinct log events for each agentic action (form fill, navigation, etc.).User-agent: Google-Agent.Check instantly with our free AI Bot Checker
Check Your Website