Skip to main content
Glama

ethora-mcp-server

Crawl Website Source and Wait

ethora-sources-site-crawl-v2-wait

Crawl a website URL and block until the server finishes — a single-call, long-timeout variant of ethora-sources-site-crawl-v2 (same crawl + embed effect). Returns { done: true, durationMs, result }. 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 wait for the crawl to finish, in milliseconds. Default 120000. Caps at 600000 (10 min).
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. First observed

TDQS

A4.7/5.0
Behavior5/5

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

The description adds substantial behavioral context beyond the annotations: it explicitly states that the call blocks until the server finishes, that a 504 may still mean the job completes server-side, and that the user should verify with ethora-sources-site-list-v2. It also documents auth modes and expected error codes. This is far more than the annotations alone convey.

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 and front-loaded with the core purpose, then immediately distinguishes it from the sibling variant. The auth and error details are dense but each sentence adds needed information, and nothing is redundant with the schema.

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?

For a tool with four parameters and no output schema, this description gives the return shape, timeout cap, auth requirements, and failure paths. The timeout fallback guidance is especially valuable for an agent deciding whether to retry or inspect results. Nothing essential is missing.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds meaningful extra context by explaining that appId is required in B2B mode unless already set via ethora-app-select and ignored in app-token mode, and by clarifying timeoutMs behavior in the error section. This exceeds schema-only information.

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: 'Crawl a website URL and block until the server finishes.' It immediately identifies itself as a single-call, long-timeout variant of ethora-sources-site-crawl-v2 with the same crawl and embed effect, which clearly separates it from the base sibling and the listing tool.

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 clearly implies when to use this variant: when you want the crawl result synchronously and can accept a long timeout. It names the sibling base tool and the list tool for post-timeout verification. It does not include an explicit 'use the base version instead when...' exclusion, but the variant relationship is clear enough for an agent to route correctly.

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.