Skip to main content
Glama
bicibg

Apixies MCP Server

by bicibg

parse_robots_txt

Read-only

Fetch a domain's robots.txt to extract user-agent rules, allowed/disallowed paths, crawl delays, and sitemap URLs for compliant crawling.

Instructions

Fetch and parse a domain's robots.txt file. Returns user-agent rules, allowed/disallowed paths, crawl delays, and sitemap URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain name (e.g., "github.com"). Without https://

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.2

TDQS

A3.8/5.0
Behavior3/5

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

Annotations provide readOnlyHint=true and openWorldHint=true, covering safety and external access. The description adds that it fetches the file and returns specific fields, but does not disclose failure modes (e.g., missing robots.txt) or rate limiting. Some additional value over annotations, but not rich.

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?

A single, dense sentence that front-loads the action and resource, then lists the outputs. No filler or redundancy.

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 simple one-parameter tool with no output schema, the description covers the essential return values. It does not mention edge cases like missing robots.txt or response format, but given the tool's simplicity and annotations, it is reasonably complete.

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 schema already fully describes the domain parameter, including format and example. The description adds no new meaning beyond what the schema provides, so 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 clear verb ('Fetch and parse') and resource ('domain's robots.txt file'), and explicitly lists the extracted content (user-agent rules, paths, crawl delays, sitemaps). This distinguishes it from sibling tools like parse_sitemap or check_links.

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 description explains what the tool does but gives no explicit guidance on when to use it versus alternatives (e.g., parse_sitemap). The context is clear enough to infer, but it lacks an explicit 'use this when...' statement or exclusions.

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