Skip to main content
Glama

scrape

Fetch any public URL and return the main content as LLM-ready markdown. Free 20/day, then pay-per-call via x402.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesPublic http(s) URL to fetch
maxCharsNoCap on returned markdown/text length (default 200000)

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the transparency burden. It does disclose useful behavioral details: fetches public URLs, returns main content in markdown, has a free daily quota, and then becomes pay-per-call. However, it does not explain what 'main content' means, how much boilerplate is stripped, or what happens on failures, redirects, or non-public URLs.

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?

Two sentences, zero filler. The core action and output format are front-loaded, and the pricing constraint is added in a compact final clause. Every word 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?

The tool is simple: one required URL parameter, one optional length cap, and no output schema. The description covers return format and quota behavior. It could mention error cases or non-public URL handling, but for a basic fetch-to-markdown utility with fully documented parameters, it is reasonably complete.

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 description coverage is 100%, so the schema fully documents both url and maxChars. The description adds no parameter-specific semantics beyond what the schema states, leaving the baseline of 3 appropriate.

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 verb ('Fetch'), the resource ('any public URL'), and the output ('main content as LLM-ready markdown'). It naturally distinguishes itself from the sibling web_search tool: scrape targets a specific known URL while web_search finds URLs via a query.

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?

Usage is implied rather than explicit: if you have a direct URL and want its content, use scrape; if you need to find a URL, use web_search. The description does not explicitly state when not to use the tool or name alternatives, but the semantics are clear enough for basic routing.

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

A3.9/5.0
Disambiguation5/5

The two tools are completely distinct: scrape fetches and converts specific URLs to markdown, while web_search performs web searches and returns structured results. There is no possible ambiguity between them.

Naming Consistency5/5

Both tool names are single verbs in lowercase snake_case: 'scrape' and 'web_search'. They follow a consistent imperative pattern, making the naming predictable and intuitive.

Tool Count3/5

With only 2 tools, the server feels thin for its apparent domain of web data access. While it covers the two most common operations, it borders on being too sparse for a comprehensive server.

Completeness4/5

The set covers the core workflows of searching the web and retrieving page content. Minor gaps exist, such as no HTML saving or link extraction, but the primary use cases are fully addressed, so it is not severely incomplete.

Resources