Skip to main content
Glama

Crawl Site

crawl_site
Read-onlyIdempotent

Read multiple linked pages with strict page and depth limits.

Use only when several pages are required. If you merely need to discover a site's structure, use map_site first because crawling is slower and costlier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute HTTP(S) starting URL for a bounded multi-page crawl
max_depthNoMaximum link depth from the starting URL (capped at 5)
max_pagesNoMaximum pages to read (capped at 50)

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds meaningful behavioral context beyond annotations: strict page/depth limits and the cost/slowness tradeoff. It does not contradict annotations.

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 short sentences with no fluff: the core action and limits come first, followed by targeted usage guidance. Every sentence 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?

For a simple three-parameter tool with strong annotations and full schema coverage, the description provides enough context for correct selection and invocation. It does not describe the exact return format, but no output schema exists and it clearly says it reads pages, so an agent can infer the outcome.

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 the schema already documents url, max_depth, and max_pages. The description only refers to 'page and depth limits' without adding syntax or format details beyond the schema, matching the baseline for high schema coverage.

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 uses a specific verb and resource ('Read multiple linked pages') and explicitly differentiates from map_site, which discovers site structure. An agent can tell it apart from siblings like read_page and map_site without ambiguity.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance ('Use only when several pages are required') and names map_site as the preferred alternative for structure discovery, with a rationale (slower and costlier). This is model usage guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct operation: health checking, site mapping, single-page reading, multi-page crawling, and web search. The descriptions cross-reference each other to guide selection, leaving no ambiguity about when to use which tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: check_web_service, crawl_site, map_site, read_page, search_web. The naming style is uniform and predictable.

Tool Count5/5

Five tools is a well-scoped set for a web reading service. Each tool covers a distinct need (discover, search, read, crawl, health check) and none feel redundant or superfluous.

Completeness5/5

The surface covers the full workflow: search to find URLs, map to discover site structure, read for single pages, crawl for bulk retrieval, and health check for service status. There are no obvious dead ends or missing core operations for the stated purpose.

Resources