Skip to main content
Glama

Server Details

Stealth scraping API for AI agents. Clean Markdown from any URL. x402 crypto payments.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.4/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_pricing handles payment info, scrape performs the core scraping, and server_status reports engine health. There is no overlap or ambiguity between them.

Naming Consistency4/5

get_pricing and scrape follow a simple verb-oriented pattern, but server_status deviates by using a noun_noun form instead of a verb-based name (e.g., get_status). The inconsistency is minor and does not hinder readability.

Tool Count5/5

Three tools is a well-scoped set for a BaaS scraping API: one to check pricing, one to scrape, and one to monitor server health. Each tool earns its place without unnecessary bloat.

Completeness4/5

Core scraping workflows are fully covered with flexible output formats and options. Minor gaps exist, such as no batch scraping or explicit API-key management, but these are not essential for the stated purpose and can be worked around.

Available Tools

3 tools
get_pricingA
Read-onlyIdempotent
Inspect
Check current pricing and payment requirements for the BaaS scrape engine.

Returns pricing info, supported networks, and payment instructions.
No authentication required.

Returns:
    Current pricing details and payment instructions.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds useful behavioral context beyond annotations by explicitly stating that no authentication is required and by listing what the tool returns (pricing info, supported networks, payment instructions). No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the core purpose. The final 'Returns:' line is somewhat redundant with the preceding sentence, but it is not verbose enough to cause confusion or dilute the message.

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?

Given that this is a zero-parameter, read-only, idempotent tool with an output schema, the description covers everything an agent needs: what it does, what it returns, and that no authentication is required. Nothing material 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?

The tool has zero parameters, so the schema carries no meaningful parameter information. The description correctly focuses on the query's result rather than inputs; a baseline of 4 is appropriate because there is nothing for the description to clarify.

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 states a specific verb ('Check'), a clear resource ('current pricing and payment requirements'), and the scope ('BaaS scrape engine'). It is immediately distinguishable from siblings like scrape and server_status because the topic is pricing, not scraping or server health.

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 establishes the context for use: whenever current pricing, payment requirements, or supported networks are needed. It does not explicitly name alternatives or exclusions, but the purpose is narrow enough that no confusion with the sibling tools is likely.

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

scrapeA
Read-onlyIdempotent
Inspect
Scrape a URL and return content in your preferred format.

Supported output formats:
- markdown (default): Clean LLM-ready Markdown text
- screenshot: PNG/JPEG image of the page
- pdf: PDF document of the page
- csv: Table data extracted as CSV
- html: Sanitized HTML with scripts/ads removed

This tool handles:
- JavaScript rendering (SPA, dynamic content)
- Anti-bot bypass (Cloudflare Turnstile, Datadome)
- DOM cleaning (strips scripts, nav, footer, ads)
- HTML-to-Markdown conversion (Mozilla Readability engine)
- Automatic retry with escalating wait strategies
- Domain cooldown to avoid rate-limiting
- Response caching (5 min TTL)

Args:
    url: The URL to scrape (must start with http:// or https://)
    output: Output format: "markdown" (default), "screenshot", "pdf", "csv", "html"
    wait_for_selector: Optional CSS selector to wait for before extraction (e.g., ".article-content")
    timeout_ms: Navigation timeout in milliseconds (default: 20000, max: 120000)
    block_media: Block images/fonts/video for faster loading (default: true)
    wait_strategy: Wait strategy: "default", "spa", "heavy", "cloudflare" (auto-detected if omitted)
    retry: Enable automatic retry on failure (default: true)
    bypass_cache: Skip cache, force fresh scrape (default: false)
    javascript: Custom JavaScript to execute after page load (e.g., "window.scrollTo(0, 1000)")

Returns:
    Content in the requested format, or an error message.
ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
retryNo
outputNo
javascriptNo
timeout_msNo
block_mediaNo
bypass_cacheNo
wait_strategyNo
wait_for_selectorNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior5/5

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

The description goes far beyond the annotations by disclosing concrete behaviors: automatic retries with escalating waits, domain cooldown, 5-minute response caching, sanitization (strips scripts/ads), and the use of Mozilla Readability. It even explains what happens with bypass_cache and javascript execution. Nothing contradicts the readOnlyHint or idempotentHint 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 long but efficiently organized: a one-line purpose, a compact list of formats, a bulleted capability list, then an Args block with defaults. Every sentence adds operational value, and the most decision-relevant information (formats, key behaviors) is front-loaded.

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 9 parameters and no schema descriptions, the description includes everything needed to invoke it correctly: required URL format, all parameter defaults and semantics, output options, behavior on failure, caching, and a Returns section. The output schema presence and annotations further round out the picture, leaving no critical gaps.

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 description coverage is 0%, so the description carries the entire burden of explaining all 9 parameters. The Args section describes every parameter with types, defaults, allowed values, and examples (e.g., wait_for_selector '.article-content', javascript 'window.scrollTo(0, 1000)'). This fully compensates for the empty schema descriptions.

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 clear, specific verb-resource pair ('Scrape a URL and return content') and then enumerates supported output formats (markdown, screenshot, pdf, csv, html), which precisely scopes the tool. It is easily distinguishable from the sibling tools get_pricing and server_status, whose purposes are unrelated.

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 effectively communicates when to use this tool by detailing its capabilities (JavaScript rendering, anti-bot bypass, DOM cleaning, caching, etc.). It does not explicitly name alternatives or exclusion conditions, but the sibling tools are clearly different in purpose, making the appropriate context unambiguous.

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

server_statusA
Read-onlyIdempotent
Inspect
Check the BaaS engine health and operational status.

Returns browser status, uptime, x402 payment mode, and context count.

Returns:
    Server health and diagnostic information.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds value by naming what the agent will actually receive: browser status, uptime, x402 payment mode, and context count. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first sentence is strong and the return-field list is useful, but the final 'Returns: Server health and diagnostic information' repeats what the preceding sentence already stated. The description is compact but not every sentence earns its place.

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 zero parameters, strong safety annotations, an output schema, and unrelated siblings, the description covers everything an agent needs to invoke and interpret this tool correctly. It names the expected diagnostic fields and leaves no meaningful gap.

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?

The tool has zero parameters, so there are no parameter semantics for the description to clarify. The baseline of 4 for a parameterless tool is appropriate, and the description sensibly focuses on outputs instead.

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 states a clear action ('Check') and a specific resource ('BaaS engine health and operational status'). It also enumerates concrete return fields, making its purpose unambiguous and clearly distinct from the unrelated sibling tools get_pricing and scrape.

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 makes the usage context clear: this is a health-and-status diagnostic call. It does not explicitly name alternatives, but none of the siblings are plausible substitutes, so no exclusion is strictly needed.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates
    • First observedget_pricing
    • First observedscrape
    • First observedserver_status

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables AI agents to scrape any URL through a stealth browser with anti-bot bypass, returning clean Markdown, and optionally pay per request via x402 micropayments.
    1
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Pay-per-use clean web reader for AI agents. URL in, markdown plus metadata out, in milliseconds. Settled per-call in USDC over x402 — no signup, no API keys.
    1
    82 npm
    2
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables extracting clean, structured markdown from any URL—stripping nav, ads, and scripts—for RAG pipelines and AI research agents, with pay-per-call micropayments via x402.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources