GeoPromptTracker

AI crawler profile

What is Claude-User? How to allow or block Anthropic's crawler

User-agent string to match in robots.txt and server logs: Claude-User

Operator

Anthropic

Purpose

AI search & live answers

robots.txt

Respects robots.txt

Claude-User fetches individual pages when someone asks Claude to look at a URL or search the web mid-conversation. Like ChatGPT-User, it represents live human attention rather than bulk crawling — hits from it mean Claude users are being pointed at your content.

Does Claude-User respect robots.txt?

Anthropic documents Claude-User alongside its other agents; it fetches single user-requested pages rather than crawling at scale.

Verify it's really Claude-User

Anthropic publishes no IP-range file for Claude-User, so it can only be identified by its user-agent string — which anything can send. Treat traffic claiming this agent as unverified, and prefer a reverse-DNS check where the operator documents one before acting on it.

Block Claude-User with robots.txt

robots.txt — block
User-agent: Claude-User
Disallow: /

Explicitly allow Claude-User

robots.txt — allow
User-agent: Claude-User
Allow: /

Block Claude-User at the server or CDN

robots.txt is the right first step for Claude-User, since Anthropic honors it. Use these only if you want the block enforced rather than requested — for example to stop agents spoofing the user agent. Matching on the user-agent string still trusts a self-declared header — and no IP-range file exists for this agent, so treat it as best-effort.

nginx
if ($http_user_agent ~* "Claude-User") {
    return 403;
}
apache — .htaccess
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Claude-User [NC]
RewriteRule .* - [F,L]
cloudflare — WAF expression
(http.user_agent contains "Claude-User")

Find Claude-User in your server logs

shell
grep -i "Claude-User" /var/log/nginx/access.log | wc -l

Should you block Claude-User?

For most sites, no. Claude-User powers visibility: blocking it removes your pages from the cited answers Anthropic's assistant shows its users — the AI-era equivalent of de-indexing yourself from a search engine. Block it only if you deliberately don't want that audience. Our guide on blocking AI bots covers the trade-offs in detail.

Check and monitor Claude-User on your site

Related reading

Frequently asked questions

What is Claude-User?

Claude-User is Anthropic's agent for AI search and live answers. Fetches pages on behalf of a user during a Claude conversation.

Does Claude-User respect robots.txt?

Anthropic documents Claude-User alongside its other agents; it fetches single user-requested pages rather than crawling at scale.

How do I block Claude-User?

Add "User-agent: Claude-User" followed by "Disallow: /" to your robots.txt file. The change takes effect the next time the bot fetches your robots.txt.

Does blocking Claude-User hurt my Google rankings?

No. Claude-User is separate from Googlebot, which handles Google Search indexing. Blocking Claude-User has no effect on your traditional search rankings, but it does remove your pages from the AI answers Anthropic's assistant serves to its users.

How can I tell if Claude-User is crawling my site?

Search your server access logs for the string "Claude-User" — for example: grep -i "Claude-User" /var/log/nginx/access.log | wc -l. Our free AI Bot Log Analyzer does this in your browser: paste a log file and it counts hits per AI crawler, including Claude-User, with per-path breakdowns.

How do I use Claude-User?

You don't — Claude-User isn't a tool you run. It's Anthropic's own crawler, operated by Anthropic, that visits your site from their infrastructure. The only control you have over it is whether you allow or block it, via robots.txt or a server rule. If you're looking to crawl other sites yourself, you'd write your own crawler or use a crawling library; sending "Claude-User" as your user agent would be impersonating Anthropic.

Where is the official Anthropic documentation for Claude-User?

Anthropic publishes it at https://support.claude.com/en/articles/8896518-does-anthropic-crawl-data-from-the-web-and-how-can-site-owners-block-the-crawler. That page is the authoritative source for the user-agent string and Anthropic's stated crawling policy.

More Anthropic agents

Part of our directory of every known AI crawler, refreshed monthly. Last verified: 2026-08-14.