Skip to main content
Glama

Crawl a site

crawl_site

Audit an entire site for cross-page SEO issues: broken URLs and referring links, duplicate titles and descriptions, missing basics, and deeply buried pages. Uses sitemap seeds and obeys robots.txt.

Instructions

Crawl a site and report the problems only visible across pages: broken URLs and what links to them, duplicate titles and descriptions, missing basics counted as a proportion, and pages buried too deep to be crawled often. Seeds from the sitemap when there is one. Read-only, obeys robots.txt and paces itself.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteNoStart URL. Defaults to SEO_MCP_SITE.
maxDepthNoHow many links deep to follow. Default 3.
maxPagesNoHard cap on pages fetched. Default 200 (SEO_MCP_MAX_PAGES).
listPagesNoInclude the full page-by-page table. Default false — it is long.
useSitemapNoSeed the crawl from the sitemap. Default true, and a much better sample.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does this well by explicitly stating 'Read-only, obeys robots.txt and paces itself,' which tells the agent about safety, rate-limiting, and site-respect behavior. The sitemap-seeding note adds useful context beyond the schema.

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?

Three sentences, each earning its place: the first defines output scope and contents, the second notes sitemap seeding, and the third covers safety and pacing. Dense but readable, with no fluff or repetition of the schema.

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 tool with 5 optional parameters, complete schema coverage, no output schema, and no annotations, the description provides the essential behavioral profile (cross-page problems, sitemap seeding, safety) and is sufficient for an agent to invoke correctly. It does not describe result format, but there is no output schema to leverage and the listed report categories imply the response shape.

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 has 100% description coverage for all 5 parameters, so the baseline is 3. The description adds only a small reinforcement of the useSitemap behavior ('Seeds from the sitemap when there is one') but otherwise leaves parameter-level meaning to the already-complete schema.

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 states a clear verb and resource ('crawl a site') and then enumerates the specific cross-page problems it reports: broken URLs with referrers, duplicate titles and descriptions, missing basics as proportions, and deep-buried pages. This clearly distinguishes it from siblings like find_broken_links and find_duplicate_content, which target single issue classes.

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 conveys that the tool is for site-wide, cross-page problems and mentions read-only behavior, robots.txt compliance, and sitemap seeding. This gives an agent clear context for when a full crawl is appropriate, though it does not explicitly name alternatives or state when not to use it.

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