Skip to main content
Glama

Robots Policy Lint

Server Details

Lint a robots.txt, test paths against RFC 9309, see which AI crawlers it really blocks.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Tool DescriptionsA

Average 4.4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct job: linting syntax, auditing AI crawler access, checking a specific path, diffing two versions, and merging a policy stance. Although audit_ai_access and check_path_allowed both evaluate robots.txt access, one is crawler-level across the whole file and the other is path-level for a single crawler, so they are not easily confused.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: audit_, check_, diff_, lint_, merge_. The objects are clear and the verbs accurately signal the operation, so the naming scheme is predictable and uniform.

Tool Count5/5

Five tools is a well-scoped size for a robots.txt linting and policy analysis server. Each tool covers a meaningful operation without redundancy, and the count feels neither thin nor bloated.

Completeness5/5

The tool set covers the core lifecycle of robots.txt analysis: linting for errors, auditing AI access, evaluating specific paths, diffing version changes, and merging maintained policy stances. No obvious dead ends or missing operations exist for the stated domain.

Available Tools

5 tools
audit_ai_accessWhich AI crawlers does this file actually stop?A
Read-onlyIdempotent
Inspect

Evaluate a pasted robots.txt against every AI crawler in this index and return the two lists that matter: blocked and allowed, per operator and category. Also names the tokens in your file that match no known crawler (a typo blocks nothing) and separates the crawlers that document obedience from the ones observed ignoring robots.txt, which need an IP or WAF rule instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathNoPath to test the verdict at. Defaults to "/".
robots_txtYesThe contents of the robots.txt file.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint and idempotentHint already present, the description adds meaningful behavioral detail: it evaluates against 'every AI crawler in this index', flags tokens matching no known crawler, and separates obedient crawlers from those observed ignoring robots.txt. This goes beyond the annotations and clarifies the tool's analytical behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no filler. The primary purpose is front-loaded, and the second sentence packs additional valuable features (unknown tokens, obedience classification) without bloat. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Even without an output schema, the description specifies the shape and scope of results (blocked/allowed lists per operator and category, unknown tokens, obedience split). It covers the key context an agent needs to call the tool and interpret results; only a precise schema-like format description is missing, which is not essential here.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% (both robots_txt and path have descriptions), so the baseline is 3. The description itself does not add parameter-specific syntax or semantics beyond 'pasted robots.txt', which restates the schema. No extra value is contributed to parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb ('Evaluate') and resource (pasted robots.txt against the AI crawler index), and clearly states the two outputs (blocked and allowed lists per operator and category). It also differentiates itself from sibling tools like lint_robots_txt or check_path_allowed by focusing on AI-crawler coverage and unknown-token identification, so an agent can pick it unambiguously.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear usage context: auditing a pasted robots.txt for AI crawler coverage and determining which crawlers need extra IP/WAF rules. It implicitly distinguishes itself from alternative tools by offering a comprehensive index-based audit, though it stops short of explicitly naming siblings or stating when not to use them.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

check_path_allowedWould this crawler fetch this path?A
Read-onlyIdempotent
Inspect

Evaluate a pasted robots.txt for one crawler and one or more paths under RFC 9309: longest token match for the group, longest path pattern for the rule, Allow breaking a tie, * and $ supported. Returns allowed/disallowed per path with the exact line that decided it, and flags the cases where a merge-groups parser and a first-group-wins parser would disagree.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathsNoPath or paths to test, e.g. "/blog/post". Defaults to "/". Max 200.
robots_txtYesThe contents of the robots.txt file.
user_agentYesThe crawler's product token, e.g. GPTBot, Googlebot, ClaudeBot.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnly and idempotent annotations, the description reveals substantial behavioral detail: it returns allowed/disallowed per path, cites the exact deciding line, and flags disagreements between merge-groups and first-group-wins parsers. It also specifies the RFC 9309 matching rules including wildcard support, giving an agent a clear model of how the tool behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single dense sentence that front-loads the core action ('Evaluate a pasted robots.txt') and then adds high-value specifics: RFC 9309 semantics, wildcard support, exact return behavior, and parser-disagreement flags. Every clause earns its place, and there is no filler or repetition of the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Although there is no output schema, the description compensates by explicitly stating what is returned: allowed/disallowed status per path, the exact deciding line, and parser-disagreement cases. For a read-only, idempotent evaluation tool, this is complete enough for an agent to invoke it and interpret results correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already covers all three parameters with 100% descriptive coverage, including examples and defaults, so the description does not need to add parameter-level meaning. The description's algorithm detail indirectly clarifies how user_agent and paths are interpreted, but it does not add new parameter semantics beyond what the schema provides. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('Evaluate') and resource ('a pasted robots.txt') for a precise task: deciding whether given paths are allowed for one crawler under RFC 9309. It also clearly distinguishes itself from the sibling tools by focusing on per-path allow/disallow decisions rather than auditing, linting, diffing, or merging policies.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Evaluate a pasted robots.txt for one crawler and one or more paths' gives clear context for when to use this tool: when you have robots.txt content and need path-level decisions. It does not explicitly name alternative tools or state when not to use it, but the usage context is unmistakable and sufficient for an agent to select it among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

diff_robots_txtDiff two robots.txt by effectA
Read-onlyIdempotent
Inspect

Compare two versions of a robots.txt and report only the crawlers whose verdict actually changes at a given path — not the text difference. Answers 'did my edit do what I meant, and did it do anything else', including sitemap additions and whether the parse errors went up or down.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathNoPath to compare verdicts at. Defaults to "/".
afterYesThe new robots.txt.
beforeYesThe old robots.txt.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint and idempotentHint annotations, the description discloses non-obvious behavioral details: it filters to verdict changes, includes sitemap additions, and tracks whether parse errors went up or down. This goes well beyond what annotations provide and helps the agent anticipate the tool's output style.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, with the core behavior front-loaded and no redundant wording. The motivating question is answered efficiently without repeating schema data or annotation values.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains what the tool returns: changed crawler verdicts, sitemap additions, and parse-error trends, which is important because no output schema is provided. It stops short of describing the exact response structure, but an agent has enough context to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so before, after, and path are already documented in the input schema. The description adds no parameter-specific detail, but none is needed because the schema carries the full burden; baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action: compare two robots.txt versions and report only crawlers whose verdict changes at a given path. It explicitly distinguishes itself from a text diff, making the tool's purpose unambiguous even without inspecting the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description frames the intended use case: checking whether a robots.txt edit did what was meant and did not cause unintended changes. It does not explicitly name sibling alternatives or state when not to use it, but the context is clear enough for an agent to choose it appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

lint_robots_txtLint a robots.txtA
Read-onlyIdempotent
Inspect

Parse a robots.txt you paste and report every fault that makes it do something other than what it looks like: misspelled directives, a full UA string where a product token belongs, rules before any User-agent line, duplicate groups, noindex (unsupported since 2019), relative Sitemap URLs, BOM. Each finding carries the line number and the fix.

ParametersJSON Schema
NameRequiredDescriptionDefault
robots_txtYesThe contents of the robots.txt file.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond readOnlyHint by enumerating specific fault types (misspelled directives, noindex unsupported since 2019, relative Sitemap URLs, BOM) and stating the output shape: 'Each finding carries the line number and the fix.' This gives an agent a concrete model of behavior without needing to invoke the tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The entire description is one sentence that front-loads the action and follows with a compact list of fault categories and the output contract. No filler or redundant restatement. Every clause adds operational detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read-only tool with no output schema, the description covers input, processing intent, and return-value contract (line number + fix). It lists enough fault categories to set expectations, and the absence of an output schema is compensated by the explicit per-finding description. No critical detail is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents robots_txt as 'The contents of the robots.txt file' with 100% coverage. The description adds only that the user pastes the content, which reinforces the inline-string expectation but doesn't add format, encoding, or size details. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Parse a robots.txt you paste and report every fault...' It lists concrete fault categories and output details, making its function unambiguous. Its scope as a generic whole-file linter distinguishes it from siblings like check_path_allowed or merge_policy.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'a robots.txt you paste' signals the input mode and when to use the tool: when the user has file contents to validate. It does not explicitly reference sibling tools or state when not to use it, but the lint-focused purpose supplies clear context. Missing explicit exclusions/alternatives prevents a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

merge_policyAdd a ready-made stance to an existing fileA
Read-onlyIdempotent
Inspect

Merge one of eight maintained robots.txt stances (block-ai-training, allow-ai-search-only, block-all-ai, block-datasets, block-disputed, block-seo-tools, allow-all, maximum-ai-visibility) into a robots.txt you already have, without touching a single rule you wrote: a token you already name keeps your rules and the stance's version is reported instead of applied.

ParametersJSON Schema
NameRequiredDescriptionDefault
stanceYesOne of the eight stance slugs.
robots_txtYesYour current robots.txt.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Even though annotations already declare readOnlyHint=true and idempotentHint=true, the description goes further by explaining the exact conflict behavior: existing user rules are preserved, and if a covered token already exists the stance version is reported rather than applied. This resolves the apparent risk of a 'merge' mutating the file and matches the annotations with no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core action is front-loaded and every clause contributes either the stance list, the preservation guarantee, or the report-not-apply behavior. It is a long single sentence, which makes it slightly denser than ideal, but there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter tool with high schema coverage and safety annotations, the description covers the main prerequisite (existing robots.txt) and the non-destructive outcome. It does not describe the exact report/output format, and no output schema exists to fill that gap, so a small completeness gap remains.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and both parameter descriptions are already meaningful, so the baseline is 3. The description adds value by listing all eight accepted stance slugs and clarifying that robots_txt is an existing file to be augmented, which is especially helpful because the schema has no enum constraint.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource ('Merge ... robots.txt stances into a robots.txt you already have') and enumerates the exact eight stances, so the agent knows precisely what action is offered. It also asserts a key constraint ('without touching a single rule you wrote'), which distinguishes this policy-merging tool from the sibling audit/lint/diff/check tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'robots.txt you already have' implies this is for augmenting an existing file rather than creating one, so usage context is only implied. The description does not name sibling tools, state when not to use merge_policy, or explain why audit_ai_access/check_path_allowed/diff_robots_txt/lint_robots_txt would be alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Analyze and generate robots.txt files with AI crawler awareness. Fetch any site's robots.txt, detect which AI bots (GPTBot, ClaudeBot, PerplexityBot, Google-Extended) are blocked or allowed, and generate optimized robots.txt with toggle controls for 20+ AI crawlers.
    5
    1
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Checks a website's robots.txt and Cloudflare settings to identify AI crawler blocking. Also generates llms.txt content to improve visibility to AI answer engines.
    3
    43
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to create, validate, and audit llms.txt files for websites, including checking against Google Lighthouse's Agentic Browsing requirements, via Streamable HTTP with no API key needed.
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Audits AI-bot visibility: robots.txt per-bot for 22 AI user-agents (GPTBot/ClaudeBot/PerplexityBot/etc), Cloudflare flags, JSON-LD, sitemap, llms.txt, SPA shell, plus cross-model brand mentions via Perplexity + OpenRouter. 0-100 score. SSRF-guarded, spend-capped.
    4
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources