Skip to main content
Glama

scrapeunblocker-mcp-remote

List interactive page elements

list_elements
Read-only

Fetch a page through the ScrapeUnblocker API (https://developers.scrapeunblocker.com) and return its interactive elements (buttons, inputs, selects, links, forms), each with a ready-to-use selector, as JSON {url, count, elements:[...]} instead of raw HTML. Use it to discover what to target, then drive the page with the steps param of fetch_html.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe absolute URL to load and inspect (http/https).
wait_valueNoThe selector/expression paired with wait_method.
wait_methodNoOptional render-wait: 'css' selector or 'js' expression.
proxy_countryNoOptional ISO country code to route through, e.g. 'US'.
sleep_secondsNoExtra seconds to wait after load before inspecting.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds value beyond annotations by specifying the exact JSON return shape, the fact that it fetches through ScrapeUnblocker, and that it returns selectors instead of raw HTML.

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 carry the essential behavior, output format, and usage guidance with no filler. The most important information is front-loaded, and the link to the API docs is placed unobtrusively.

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 the five parameters are fully documented in the schema and the description explains the return contract ({url, count, elements:[...]}), an agent has everything needed to select and invoke the tool correctly. The guidance to follow up with fetch_html also closes the main usage loop.

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 each parameter is already documented fully. The description adds no parameter-specific semantics beyond the overall purpose, making the schema the primary source. A score of 3 is appropriate for this baseline coverage.

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 ('Fetch') and resource ('interactive page elements'), then narrows the output to buttons, inputs, selects, links, and forms with ready-to-use selectors. It also contrasts itself with raw HTML, clearly separating it from fetch_html at a glance.

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 explicitly says when to use this tool: 'discover what to target' before driving the page via fetch_html's `steps` param. It does not spell out when to prefer fetch_parsed or google_search, but the primary routing guidance is clear and actionable.

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 maps to a distinct output type: rendered HTML, parsed JSON, search results, or element selectors. fetch_html and fetch_parsed both fetch a page but explicitly serve different extraction needs, so an agent can reliably tell them apart.

Naming Consistency4/5

All names use lowercase snake_case and mostly follow an action_target pattern: fetch_html, fetch_parsed, list_elements. google_search breaks the pattern slightly but is still predictable and readable.

Tool Count5/5

Four tools is a compact but well-scoped set for a scraping API wrapper. Each tool exposes a distinct capability and none is redundant.

Completeness5/5

The set covers the core scraping lifecycle: rendering HTML, getting structured data, searching Google, and discovering selectors for interaction. Combined with the steps parameter on fetch_html, agents can navigate, interact, and extract without major gaps.