Skip to main content
Glama

scrape_url

Extract content starting from a URL. Synchronous: returns the content directly, no job_id. Follows up to max_pages pages from that URL (default 1). Consumes credit only when the backend returns scrape_status=success.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
tagsNo
formatsNo
timeoutNo
wait_forNo
max_depthNo
max_pagesNo
parse_pdfNo
render_jsNo
fact_checkNo
max_age_msNo
json_promptNo
json_schemaNo
include_framesNo
follow_subdomainsNo
only_main_contentNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4/5.0
Behavior4/5

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

The description discloses credit consumption only on success, which is non-obvious and useful. It also clarifies synchronous return behavior. Annotations indicate readOnly=false and idempotent=false, and the description adds specific context about side effects, enhancing transparency.

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 three sentences long, front-loaded with the core purpose, and every sentence provides meaningful information without redundancy. It achieves high clarity in a compact form.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's 16 parameters and output schema, the description provides a high-level overview but omits important behaviors such as output formats, error handling, and most parameter options. The output schema fills some gaps, but the description alone is incomplete for a complex tool.

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

Parameters2/5

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

With 16 parameters and 0% schema coverage, the description only explains max_pages, leaving many critical parameters (e.g., formats, render_js, tags, fact_check) without semantics. This is a significant gap for effective tool invocation.

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 clearly states the tool extracts content from a URL and is synchronous, returning content directly with no job_id. This distinguishes it from sibling tools like start_crawl, which likely operate asynchronously, and from get_job/get_usage which are not extraction tools.

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 provides clear context by highlighting synchronous behavior and direct content return, implying usage for immediate extraction needs. It does not explicitly name alternatives but the contrast with start_crawl's job_id is implied, giving reasonable 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.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: start_crawl and start_search initiate different async operations, get_job polls their status, scrape_url returns content synchronously, and get_usage handles account details. No two tools overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: get_job, get_usage, scrape_url, start_crawl, start_search. The verbs (get, scrape, start) clearly indicate the action, and the nouns identify the target resource.

Tool Count5/5

Five tools cover the core workflows of this scraping/search service: two async starters, one poller, one synchronous scraper, and one usage checker. This is well-scoped without unnecessary redundancy.

Completeness4/5

The core lifecycle is covered: start async jobs, poll for results, retrieve synchronous content, and check account balance. Minor gaps exist, such as no explicit cancel/revoke job tool or a way to list historical jobs, but these are not critical for basic usage.

Resources