Skip to main content
Glama

Crawl Website Source and Wait

ethora-sources-site-crawl-v2-wait

Submit a website URL for crawling and wait until the job reports completed or failed. Returns job status, ID, poll count, and duration, so you can ingest the result directly.

Instructions

Crawl a website URL and wait for the crawl to finish: enqueues the job, then polls it until it reports completed or failed. Returns { done, status, jobId, polls, durationMs, result }; done: false with a note means the budget ran out while the job was still running (it usually finishes server-side anyway). Requires: a selected app (ethora-app-select) or an explicit appId. Auth: app-token mode OR B2B mode with an explicit appId. Errors: 401/403 wrong auth; 400 malformed url; 504/timeout if it takes longer than timeoutMs (the job may still complete server-side — check with ethora-sources-site-list-v2).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute URL to crawl, e.g. `https://example.com/docs`.
appIdNo24-char hex appId to ingest into. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode.
timeoutMsNoHow long to poll for the crawl to finish, in milliseconds. Default 45000, chosen to stay under the ~60s request timeout most MCP clients enforce. Caps at 600000 (10 min) for clients that allow longer calls.
followLinkNoIf true, also crawl in-domain links reachable from `url`. Can ingest many pages — use with care.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv26.9.3

TDQS

A5/5.0
Behavior5/5

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

Annotations provide only high-level hints (readOnly=false, not destructive, not idempotent). The description adds crucial behavioral detail: it enqueues then polls, returns a structured result, and discloses that a timeout does not guarantee the job is cancelled—it may still complete. It also explains auth requirements and error codes (401/403, 400, 504), which are not in the 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?

The description is compact yet dense, leading with the primary action, then the return shape, prerequisites, auth, and errors. Every sentence earns its place—there is no filler. It is front-loaded with the core behavior and uses a structured paragraph style that aids scanning.

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?

With no output schema, the description fully explains the return object, including the edge case of `done:false`. It covers prerequisites, auth modes, error handling, and the timeout behavior. It also references a sibling tool for follow-up, making it complete for an agent to decide and call correctly.

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

Parameters5/5

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

Schema coverage is 100%, so baseline is 3, but the description adds meaningful context beyond the schema: it explains why `timeoutMs` defaults to 45000 (to stay under typical client limits), warns that `followLink` can ingest many pages, and clarifies when `appId` is required versus ignored. This enriches each parameter's 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?

The description opens with a specific verb and resource ('Crawl a website URL') and clarifies the distinctive wait-for-completion behavior, which separates it from the likely non-waiting sibling `ethora-sources-site-crawl-v2`. It also states the outcome and what the return value contains, leaving no ambiguity about the tool's job.

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?

It explicitly states prerequisites (selected app or explicit `appId`), which auth modes are accepted, and what to do on timeout (check with `ethora-sources-site-list-v2`). It also explains the partial-failure case (`done: false` with a `note`) and notes that the job usually finishes server-side, giving clear guidance on when to use this tool versus waiting/checking elsewhere.

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

Deploy Server

Other Tools