Google-Agent
Operated by Google
Quick Facts
- User-Agent:
- Google-Agent
- Category:
- Google Bots
- Operator:
- Safety:
- Safe
- Blocking Impact:
- Low - No SEO ranking impact
- SEO Impact Score:
- 3/10
- Official docs:
- developers.google.com
What is Google-Agent?
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
What happens if you block Google-Agent?
How to block Google-Agent with robots.txt
<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.
Is Google-Agent safe to allow?
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.What does Google-Agent do?
Google-Agent is fundamentally different from traditional crawlers. It's an agentic bot that takes actions on your site.
- Navigates your site on behalf of users who request AI assistance (Project Mariner)
- Fills out forms and completes multi-step workflows at user direction
- Clicks buttons, follows links, and interacts with UI elements
- Creates server log events that let you measure AI agent engagement
- Uses IP ranges from user-triggered-agents.json for verification
- Does NOT index content or affect search rankings
- Provides data showing how important WebMCP implementation is for your site
Frequently Asked Questions
What is the official user-agent string for Google-Agent?
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.Is Google-Agent safe?
Will blocking Google-Agent hurt my SEO?
How do I block Google-Agent in robots.txt?
/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: /
What is the difference between Google-Agent and Googlebot?
What is Project Mariner?
How does Google-Agent relate to WebMCP?
How do I verify Google-Agent in my server logs?
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.).Does Google-Agent respect robots.txt?
User-agent: Google-Agent.