Skip to main content
Glama

crawl

Crawl a website from a starting URL, follow links to a set depth, and return discovered pages with titles and optional content summaries. Use link filters and depth limits to control scope.

Instructions

Crawl a website starting from a URL, following links up to a specified depth. Returns a list of discovered pages with titles and optional content summaries. Respects same-domain and link filter constraints.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesStarting URL for the crawl
timeoutNoTimeout per page in ms (default: 30000)
max_depthNoMaximum link depth to follow (default: 2)
max_pagesNoMaximum total pages to crawl (default: 10)
link_filterNoRegex pattern to filter which links to follow
include_contentNoInclude a markdown content summary per page (default: false)
max_length_per_pageNoMax content length per page when include_content is true (default: 5000)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

Discloses that traversal is depth-limited, output is a list with titles/summaries, and that same-domain/link_filter constraints are respected. However, with no annotations, it leaves side effects unclear (e.g., whether it opens tabs or alters browser state, auth handling, rate limits) and doesn't describe execution mode.

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 pack purpose, output, and constraints without filler. Front-loaded with the core action; 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?

Given no output schema, the description supplies a high-level return shape (pages with titles and optional summaries) and covers core constraints. It doesn't detail the exact returned item structure, error behavior, or side effects, but defaults and parameter meanings are fully documented in the schema.

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 covers 100% of parameters with clear descriptions, so the baseline is 3. The description reinforces the role of link_filter and includes content summaries but adds no new parameter-specific meaning.

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 the tool's action ('Crawl'), resource ('a website'), and key behavior ('following links up to a specified depth'), plus the output ('list of discovered pages with titles and optional content summaries'). This clearly separates it from single-page siblings like fetch_page and extract_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?

Implies the use case of multi-page link traversal from a URL, and mentions constraints (same-domain, link_filter), but gives no explicit 'when to use vs. alternatives' or exclusions. Siblings such as fetch_page/multi_fetch are not referenced.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/wgarrido/mcp-browser'

If you have feedback or need assistance with the MCP directory API, please join our Discord server