Skip to main content
Glama
maccydee

cute-web-scraper

cute-web-scraper

An MCP server that gives Claude web scraping powers. Free, local, no API key, no cloud account.

CI Python 3.10+ License: MIT MCP Tests

Ask in plain English. It fetches the pages, renders the JavaScript when needed, gets past the blocks, and hands back clean markdown or a queryable table — no selectors, no glue code.

Why this one

  • It gets in, for free. Four escalating tiers — plain HTTP, browser TLS fingerprints, a real browser, then a stealth browser. ASOS, eBay, Booking.com and Trustpilot all return real data on a home connection, with no proxies, no API key and no per-page cost. Hosted scrapers put their anti-bot behind metered credits and leave it out of their open-source builds; the two fingerprint tiers here are the ones that actually got past those four sites, and they cost nothing.

  • It doesn't waste your context. Articles are stripped of navigation, cookie banners and footers: a BBC news page goes from 20,513 characters to 3,198. Large results land in a SQLite table you query with SQL instead of pasting into the chat.

  • It tells the truth about failure. Five of the sites tested served a refusal under a success status — an interstitial under HTTP 200, a bot check under 202 — and one served real content under 403. Block detection weighs the page body, not the status code, so you don't get a stub reported as data.

  • Whole sites, not single pages. Sitemap discovery, parallel fetching, and 25 tools covering products, contacts, Shopify catalogues, places, screenshots and change tracking.

  • Documents too. A link to a PDF, .docx or .xlsx is extracted to text and markdown tables rather than silently skipped — and the file type is identified from the bytes, because servers routinely mislabel them.

Install

pipx install git+https://github.com/maccydee/cute-web-scraper

Chromium is downloaded automatically the first time you use js_render (a one-off ~130MB).

Related MCP server: mcp-server-scraper

Connect it to Claude Code

claude mcp add cute-web-scraper -- cute-web-scraper

Then just ask:

Scrape every product from https://example-shop.com and give me a CSV of name and price.

Tools

Fetching and discovery

Tool

What it does

search_web

Search the web and get ranked results, optionally with each result's full text in the same call

fetch_page

One URL to clean markdown, with title, status and link count

inspect_network

Report the API calls a page makes, with their JSON — read the data source directly

screenshot_page

Render a page and save a PNG to disk — what it actually looks like, not just its text

fetch_pages

Many URLs in parallel, returning results and per-URL errors

crawl_site

Discover a site's pages via sitemap, falling back to link-following

analyze_website

Detect the platform, find the sitemap, report whether JS is needed

Extraction

Tool

What it does

extract_by_selector

Arbitrary fields via CSS selectors — turns any listing into a table

extract_products

Structured product data (name, price, currency, availability, brand, sku, rating) from JSON-LD, OpenGraph or microdata

extract_emails

Email addresses across a list of URLs, with surrounding context

extract_phones

Phone numbers across a list of URLs, with surrounding context

extract_links

Every hyperlink, resolved to absolute URLs

extract_social_links

Social profiles across eight platforms

extract_shopify_store

A whole Shopify catalogue, one row per variant

list_shopify_collections

A Shopify store's collections and their product counts

Places and local businesses

Tool

What it does

find_places

Search by name or description — name, address, coordinates, phone, website, opening hours

find_places_nearby

Every business of a category within a radius of a place

Change tracking

Tool

What it does

track_changes

Fetch a page and diff it against the last check — new, same or changed

list_tracked

Pages being watched, and when each was last seen

untrack

Stop watching a page

Result tables

Tool

What it does

list_tables

Saved result tables with row counts and columns

get_table

One table's columns, row count and a sample

query_table

Read-only SQL over a saved table — filter, aggregate, group, sort, and optionally save the result as a new table

export_table

Write a table to CSV or JSON on disk

drop_table

Delete a saved table

A typical run composes them: analyze_websitecrawl_sitefetch_pagesquery_table.

Extracting arbitrary fields

extract_by_selector covers everything the fixed extractors do not:

Get the title, price and link from every product on these 40 pages,
save it as `catalogue`, then show me anything under £50.

fields maps column names to CSS selectors. row_selector makes each match a row — that is what turns a listing into a table. An @attr suffix reads an attribute instead of text, with href and src resolved to absolute URLs:

{"name": "h3 a@title", "price": ".price_color", "link": "h3 a@href"}

Driving a page

fetch_page takes actions, which run before the page is read — cookie gates, "load more" buttons, infinite scroll and search forms:

[{"action": "click", "selector": "#accept-cookies"},
 {"action": "scroll_to_bottom", "max_rounds": 10}]

Available actions: click, type, press, wait, wait_for, scroll, scroll_to_bottom and click_until_gone. Each reports what it did, so a step that silently matched nothing is visible rather than leaving you guessing.

Reading the API instead of the page

When a site is awkward to parse, inspect_network renders it and reports the requests it made. A JavaScript page almost always loads its data from an endpoint you can fetch directly — cheaper than parsing markup, and it survives redesigns that break selectors:

Inspect the network on this listing page, then fetch whatever JSON endpoint it uses.

Watching for changes

Check https://example.com/pricing for changes.

track_changes stores a snapshot and reports new, same or changed with a unified diff. That is monitoring without a scheduler — check whenever you like and see only the difference.

Slash commands

The server ships four ready-made workflows, which appear as slash commands in Claude Code: scrape_site, scrape_shopify_store, find_contacts and compare_prices.

Working with large scrapes

Any tool that returns rows accepts save_as. Instead of putting the data in the conversation, it writes a result table and hands back a summary:

Extract the whole catalogue from deathwishcoffee.com into a table called `catalogue`,
then tell me the price range and how many variants are out of stock.

Claude calls extract_shopify_store(save_as="catalogue"), gets back a row count and column list, and then answers with query_table:

SELECT COUNT(*) AS variants, MIN(price) AS cheapest,
       MAX(price) AS dearest, SUM(available) AS in_stock
FROM catalogue

The table can hold 100,000 rows and none of them enter the conversation. query_table is strictly read-only — it runs against a read-only SQLite handle and rejects anything that is not a SELECT, so a query can never modify or delete saved data.

Tables live in a SQLite file at ~/.cute-web-scraper/results.db (set SCRAPER_DB_PATH to move it).

Cleaning data

query_table also takes save_as, which persists the result as a new table. SQL already expresses the usual cleanup operations, so there's no separate set of edit tools:

SELECT DISTINCT * FROM leads                                  -- deduplicate
SELECT street || ', ' || city AS address FROM leads           -- merge columns
SELECT name, phone FROM leads WHERE phone IS NOT NULL         -- drop columns and rows
SELECT vendor AS brand FROM catalogue                         -- rename

The source table is left untouched unless you deliberately target its own name, and the response says replaced_existing_table when you do — so an in-place filter is never a silent loss of rows.

Places and local businesses

find_places looks up a single place; find_places_nearby returns everything of a category within a radius, which is the local lead-generation case:

Find every dentist within 4km of Bath, save it as `leads`,
then tell me how many have a website but no phone number.

Categories accept friendly names (cafe, dentist, hotel, solicitor, gym, hairdresser, …) or a raw OpenStreetMap tag like amenity=dentist.

A note on the data source. This is OpenStreetMap, not Google Maps. Google was the obvious target and it does not work: an automated browser gets a cookie-consent interstitial, and once past that, a degraded map shell with no place panel. The stealth tier does not help, because this is a consent wall rather than bot detection — a different problem from the one stealth solves.

OpenStreetMap gives the same fields — name, address, coordinates, phone, website, opening hours, category — through documented open endpoints with no key. The one thing it has no equivalent for is star ratings and review counts, which are Google's own proprietary data.

Both endpoints are volunteer-run. Nominatim's policy of one request per second is enforced internally regardless of SCRAPER_DELAY_MS, and Overpass queries fall through several public mirrors, because the main instance regularly returns 504 under load.

Tool output is also capped at SCRAPER_MAX_INLINE_CHARS (25,000 by default). Past that, a result is truncated with a note pointing at save_as — so a single call can't fill your context by accident.

Example prompts

Export the whole catalogue from deathwishcoffee.com and tell me the price range.

Find all email addresses on https://company.com and its contact pages.

What platform is https://myblog.com on? Does it need JavaScript to scrape?

Scrape these 200 product pages into a table, then show me everything under £50 that's in stock.

Extract the social media links from these 10 agency sites: [urls...]

Configuration

Everything is an environment variable, with defaults that work unconfigured.

Variable

Default

Meaning

SCRAPER_DELAY_MS

1000

Base delay between requests to the same domain

SCRAPER_MAX_CONCURRENT

5

Maximum parallel requests

SCRAPER_CACHE_TTL_S

300

How long a fetched page stays reusable

SCRAPER_CACHE_MAX_ENTRIES

500

Cached pages before least-recently-used eviction

SCRAPER_AUTH_TOKEN

unset

Bearer token for HTTP mode

SCRAPER_CHROME_USER_DATA_DIR

unset

Chrome profile to inherit logged-in sessions from

SCRAPER_IMPERSONATE

1

Retry blocked requests with browser TLS fingerprints

SCRAPER_STEALTH

1

Last-resort stealth browser for the hardest blocks

SCRAPER_DB_PATH

~/.cute-web-scraper/results.db

Where result tables are stored

SCRAPER_MAX_INLINE_CHARS

25000

Ceiling on how much a single tool returns inline

Batching a long URL list into one table needs mode: "append" on every call after the first, or each batch replaces the last. Rendered pages that come back sparse can be given wait_ms, or better wait_for with a CSS selector.

How it behaves

Main content, not the whole page. Article-shaped pages are run through trafilatura, which isolates the body and drops the surrounding furniture — chosen because on an independent 2,008-page benchmark it scores 0.791 F1 against Readability's 0.674. It is applied per page rather than universally: the same benchmark shows extractors diverging by 20–30 points on product grids and collections, where "main content" is not an article, so listing pages keep the full document. Pass main_content: false to force that anywhere.

Four tiers, escalating only when refused. A plain HTTP client handles most pages. If a site refuses, the request retries with real browser TLS fingerprints (Chrome, then Safari), because some sites fingerprint the TLS handshake itself and no header change gets past them. js_render: true renders in Chromium for single-page apps. As a last resort, a stealth-patched browser handles sites that need JavaScript and reject ordinary automation.

Each tier fixes a different failure, and none is a superset of the others: the TLS tier can't run JavaScript, and Playwright is a detectably automated browser. Every result reports which tier served it. Set SCRAPER_IMPERSONATE=0 or SCRAPER_STEALTH=0 to switch the last two off and let blocks stand.

The last two tiers are evasion, not politeness — they exist to get past bot detection that sites deliberately deployed. They only ever run after a refusal, never on a site that served the page normally.

Adaptive backoff. Requests to the same domain are spaced by SCRAPER_DELAY_MS, measured start to start, so the delay caps the request rate rather than adding to slow responses. When a domain pushes back — a 429, a 403, a Cloudflare challenge — the delay for that domain doubles, up to 60 seconds, and decays back down once requests succeed again. Domains are tracked independently, so scraping two sites at once costs nothing extra.

robots.txt is not enforced. It is read only to locate sitemaps; its Disallow rules are not consulted and there is no setting to change that. The adaptive per-domain delay is this tool's politeness mechanism.

A short cache. Fetched pages are reused for five minutes, so running fetch_pages and then extract_emails over the same URLs does not fetch everything twice.

HTTP mode

The default is stdio, which is what claude mcp add above uses. To run a persistent shared instance instead:

SCRAPER_AUTH_TOKEN=$(openssl rand -hex 16) cute-web-scraper --http --port 8080
claude mcp add --transport http cute-web-scraper http://127.0.0.1:8080/mcp

It binds 127.0.0.1 and exposes /mcp plus a /health endpoint. Binding anywhere beyond loopback requires SCRAPER_AUTH_TOKEN, and the server refuses to start without it rather than quietly publishing an open scraper to your network.

Limitations

  • No proxy rotation and no CAPTCHA solving. This is the real ceiling: the tiers here defeat TLS and browser fingerprinting, not IP reputation. A site that blocks your address or geo-fences its content needs a proxy network, and a paid service with residential proxies will beat this on those. A site that survives all four tiers is reported as blocked rather than guessed at.

  • LinkedIn and similar may need SCRAPER_CHROME_USER_DATA_DIR pointed at a logged-in Chrome profile.

  • SCRAPER_DELAY_MS=0 removes the polite delay, but backoff still engages when a site pushes back.

  • Phone extraction is deliberately conservative: it requires a country code or a trunk prefix, so it misses some bare local formats rather than returning years and order numbers.

Development

uv sync --extra dev
uv run pytest -v
uv run pytest -m integration -v -s
uv run ruff check src/ tests/ && uv run mypy src/cute_web_scraper/

Unit tests are hermetic and never touch the network. Integration tests hit live sites and are excluded from the default run.

License

MIT — see LICENSE.

Available Tools

24 tools
analyze_websiteA

Inspect a website before scraping it: detects the platform (Shopify, WordPress, Wix, ...), locates its sitemap, estimates how many pages it has, and reports whether JavaScript rendering is needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It explicitly lists the actions the tool performs (detects, locates, estimates, reports) and implies a read-only inspection. While it doesn't mention potential side effects or network behavior, the 'inspect' framing is sufficiently transparent for this tool.

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 a single, well-structured sentence that front-loads the core purpose ('Inspect a website before scraping it') and then lists concrete outcomes. It is concise, with no filler or redundant content.

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 parameter) and there is an output schema, so the description doesn't need to detail return values. It covers the main behaviors and differentiates from siblings. However, it doesn't mention error handling or behavior for unresponsive sites, which could be relevant but is not critical given the output schema likely covers return structures.

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 0% and the description does not explicitly explain the 'url' parameter format. It implicitly associates 'website' with the URL, but it does not provide details like expected scheme (http/https) or whether the URL must be a full absolute URL. With only one parameter, this isn't a major gap, but the description adds minimal parameter-specific value.

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's function with a specific verb ('Inspect'), a resource ('a website'), and detailed capabilities (detect platform, locate sitemap, estimate pages, report JS rendering). It distinguishes itself from sibling tools like fetch_page or crawl_site by focusing on pre-scraping analysis.

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 phrase 'before scraping it' gives clear contextual guidance on when to use this tool, implying it should precede scraping operations. However, it does not explicitly name alternatives or provide exclusion criteria, so it falls short of a full 5.

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

crawl_siteA

Discover the pages on a website. Prefers the site's sitemap (following sitemap indexes and robots.txt), and falls back to following links. Returns JSON with urls, count, source and truncated. Run this before fetch_pages to scrape a whole site.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
limitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It does well by sharing the sitemap preference, sitemap index/robots.txt handling, fallback to link-following, and the exact JSON return fields including 'truncated.' It doesn't mention rate limits or site impact, but it covers the key behavioral aspects.

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?

Three sentences with the main purpose front-loaded. Every sentence adds value: purpose, crawl strategy, return payload, and usage recommendation. No filler or redundancy.

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 description gives a solid overview for a moderately complex crawler: discovery method, fallback behavior, and return fields. Since an output schema exists, return-value details are less critical. Minor gaps like limit semantics and edge cases (e.g., no sitemap) keep it from a 5.

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?

Schema description coverage is 0% and the description does not explain the 'url' or 'limit' parameters at all. The schema only provides titles and defaults, so the tool description fails to compensate for the missing parameter documentation.

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 and resource: 'Discover the pages on a website.' It also distinguishes the tool from siblings by explicitly stating it should be run before fetch_pages to scrape a whole site, making its role in the workflow obvious.

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?

Provides clear usage context: run this before fetch_pages to scrape a whole site. It also explains the sitemap-first strategy and fallback behavior. It doesn't explicitly state when not to use it or name all alternative tools, so it stops short of a 5.

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

drop_tableA

Delete a saved result table. This permanently removes the stored rows; the scraped pages themselves are unaffected.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries full behavioral disclosure. It reveals that the operation permanently removes stored rows and clarifies that scraped pages are unaffected, which are key side effects. It does not mention return behavior or potential errors, but for a delete operation this level of transparency is solid.

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 two concise sentences, front-loaded with the primary action and followed by a clarifying side-effect statement. Every word earns its place, no fluff or redundancy.

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?

This is a simple tool with one parameter and an output schema, so the description need not explain return values. It covers the core action, permanence, and non-effect on scraped pages, which is sufficient for an agent to use it correctly. The only gap is parameter description, but that is accounted for in parameter semantics.

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?

Schema coverage is 0%, meaning the parameter 'name' has no description in the schema. The description does not explicitly describe the parameter; it only implies via 'Delete a saved result table' that 'name' identifies the table. This is minimal compensation for a low-coverage schema. A more explicit statement like 'name: the name of the table to delete' would be expected.

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's action: 'Delete a saved result table' with a specific verb (delete) and resource (result table). It also clarifies that it permanently removes rows but leaves scraped pages unaffected, which distinguishes it from other table-related tools like get_table, export_table, and query_table. This is a precise and unambiguous purpose statement.

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: it deletes a saved table and is permanent, implying use when a table is no longer needed. It does not explicitly mention alternatives or when not to use it, but the action is self-evident and the permanence note adds caution. Lacks explicit sibling differentiation but is adequate for an agent to decide.

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

export_tableA

Export a result table to a file on disk as CSV or JSON, and return its path. Use this to hand data to a spreadsheet or another tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
fmtNocsv
nameYes
dest_dirNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral disclosure burden. It does state the core behaviors: writes a file in CSV or JSON and returns its path. However, it does not disclose side effects such as whether existing files are overwritten, how dest_dir is resolved, or any permission or error behavior.

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, front-loaded with the action, no filler. Every word adds value, and the purpose statement is immediately clear.

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?

The tool is simple, and an output schema exists, so return values are covered. However, the description omits parameter details and alternative usage guidance, leaving some context gaps for an agent deciding how to invoke it correctly.

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?

Schema description coverage is 0%, so the description must compensate, but it only hints at fmt via "CSV or JSON". The required parameter `name` is ambiguous (table name vs. output filename), and `dest_dir` is entirely unexplained. The description does not add enough meaning beyond the raw schema.

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: "Export a result table to a file on disk as CSV or JSON, and return its path." It clearly distinguishes this from sibling table tools like get_table or query_table, which return data rather than write it to disk.

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 phrase "Use this to hand data to a spreadsheet or another tool" provides clear usage context. It does not explicitly name alternatives or say when not to use it, but the intended use case is clearly communicated.

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

extract_by_selectorA

Extract arbitrary fields from pages using CSS selectors — the general case the fixed extractors do not cover. fields maps output column names to selectors, e.g. {"name": "h1", "price": ".price"}. Set row_selector when a page holds a list: each match becomes a row and the field selectors resolve inside it, which turns a listing into a table. Suffix a selector with @attr to read an attribute instead of text — "a@href" gives the link, resolved to an absolute URL. Pass save_as to store the rows; add mode='append' when batching.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoreplace
urlsYes
fieldsYes
save_asNo
js_renderNo
row_selectorNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It explains key behaviors: resolving relative URLs to absolute, row_selector producing table rows, and save_as storing rows. However, it does not disclose potential side effects like whether it performs writes (e.g., saving to DB) or the exact behavior of js_render, leaving some ambiguity for a tool that could be both read and write.

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 dense but well-structured, offering essential details in three sentences with a clear logical flow: purpose, field mapping, row selection, attribute extraction, and storage. It uses inline code for parameters and a compact JSON example, earning its length without fluff. Slightly long but justified by the need to explain complex features.

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 complex (6 params, nested fields, output schema) and the description covers most usage aspects: selectors, attributes, row-based extraction, and save behavior. It omits details on js_render and exact return structure, but with an output schema present, that is acceptable. Overall, it provides sufficient guidance for effective use in a scraping workflow.

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 0%, so the description must explain all parameters. It covers fields with an example, row_selector semantics, the @attr suffix, and save_as/mode usage. It does not explicitly describe urls (obvious) or js_render, but the core semantics are well-addressed, exceeding the baseline given the schema's lack of 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 clearly states it extracts arbitrary fields from pages using CSS selectors, positioning it as the general-purpose alternative to fixed extractors. It explicitly names the key parameters (fields, row_selector, save_as) and even provides a JSON example, making the tool's purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says this is 'the general case the fixed extractors do not cover', directly contrasting with sibling tools like extract_products and extract_links. It also gives concrete usage patterns: using row_selector for listings, attribute suffix for hrefs, and append mode for batching, which instructs when and how to apply the tool.

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

extract_emailsA

Scan a list of URLs for email addresses. Returns JSON with results ({url, value, context}) and errors. Pass save_as='' to store results instead of returning them inline.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoreplace
urlsYes
save_asNo
js_renderNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations providing behavioral context, the description carries the full burden. It discloses that results can be returned inline or saved to a table via save_as, and that errors are included. However, it omits potential side effects like network usage, rate limits, or the meaning of mode/js_render, which limits full 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 two sentences, extremely concise, and well-structured: it states the purpose, then the output format, then the save option. No extraneous information is present, and the structure is logical.

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

Completeness2/5

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

While the tool's core function is clear, the description fails to provide sufficient context for optional parameters (mode, js_render) and does not elaborate on the output structure (e.g., what 'context' contains). Given the tool's moderate complexity, more detail is needed for full completeness.

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?

Schema coverage is 0%, so the description must explain parameters. It only clarifies save_as (storing vs returning) and implicitly urls (list of URLs). It leaves mode (what does 'replace' mean?) and js_render (when and why) unexplained, which is a significant gap given no parameter descriptions exist.

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 scans a list of URLs for email addresses, which is a specific verb-resource combination. It distinguishes itself from sibling tools like extract_phones and extract_social_links by focusing on emails, making the purpose unambiguous.

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 indicates when to use the tool (to extract emails from URLs) and mentions the save_as option for storing results instead of returning them. However, it does not explicitly contrast with alternatives, though the purpose is clear enough.

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

extract_phonesA

Scan a list of URLs for phone numbers. Returns JSON with results ({url, value, context}) and errors. Pass save_as='' to store results instead of returning them inline.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoreplace
urlsYes
save_asNo
js_renderNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description must carry the transparency burden. It discloses the return shape (results with url/value/context, errors) and the storage side effect of save_as, but it does not explain the meaning or impact of mode or js_render, nor any fetching/scraping implications.

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 two sentences, front-loaded with the core purpose, and avoids redundancy. Every sentence adds meaningful information about behavior or output.

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?

The description covers the primary workflow, output schema expectations, and the save_as option, but it omits important parameter semantics and edge-case guidance. Given the 4-parameter schema and no annotations, this is adequate but not fully complete.

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?

Schema description coverage is 0%, so the description must compensate. It explains save_as and implicitly urls, but mode and js_render are left entirely to their schema titles and defaults, which is insufficient for correct 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 uses a specific verb and resource: 'Scan a list of URLs for phone numbers.' It clearly distinguishes this from sibling tools like extract_emails, extract_links, and fetch_page by naming the exact extraction target and input type.

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 for when to use the tool: when you have a list of URLs and need phone numbers. It also explains the inline vs. save_as behavior, though it does not explicitly name alternatives or exclusions.

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

extract_productsA

Extract structured product data (name, price, currency, availability, brand, sku, image, rating, review_count) from a list of product URLs. Reads the page's own JSON-LD, OpenGraph or microdata rather than guessing at selectors, so it works across most storefronts without configuration. Pass save_as='' to store the rows for querying.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYes
save_asNo
js_renderNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It discloses the method (reads JSON-LD/OpenGraph/microdata) and that it stores rows via save_as, which implies a side effect of saving data. However, it does not mention potential issues like rate limits, errors, or the effect of js_render, leaving gaps in behavioral disclosure.

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 two sentences, front-loaded with the core purpose, and includes no fluff. Every clause adds value—specifying fields, method, compatibility, and save_as usage. It is concise and well-structured.

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?

Given the tool's moderate complexity and presence of an output schema, the description covers the main behavior, method, and parameter for saving. However, it leaves out js_render entirely and does not mention any limits or edge cases, making it slightly incomplete. The output schema reduces the need to describe return values, but the missing parameter is a notable gap.

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?

The description explains urls (list of product URLs) and save_as (stores rows for querying) but completely omits js_render. With schema coverage at 0%, this is insufficient. It adds some meaning beyond the schema but does not fully compensate for the unmentioned parameter, so a score of 3 is 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 specifies the action (extract structured product data) and the resource (list of product URLs), listing specific fields like name, price, currency, etc. It also distinguishes itself from siblings like extract_by_selector by explicitly noting it uses JSON-LD/OpenGraph/microdata instead of selector guessing, making the purpose unambiguous.

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?

It states the tool 'works across most storefronts without configuration' and implies it is for structured product data, which helps decide when to use it. However, it does not explicitly state when not to use it or mention alternatives like extract_by_selector, though it contrasts with selector-based guessing. This provides context but lacks explicit exclusions.

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

extract_shopify_storeA

Extract a Shopify store's catalogue as one row per product variant — price, sku, options, availability, vendor, image and product URL. Reads the store's public products.json, so it needs no rendering and no selectors. Pass save_as='' to store the rows (recommended: catalogues are large). max_products caps how many products are pulled.

ParametersJSON Schema
NameRequiredDescriptionDefault
save_asNo
store_urlYes
max_productsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries full responsibility. It discloses the mechanism (reads products.json), the output structure (row per variant with listed fields), and behavior of parameters (save_as for storage, max_products for capping). It does not mention potential failure modes like missing products.json, but provides enough behavioral context for an agent to understand the tool's operation.

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 two sentences: the first succinctly states the purpose and output format, the second explains the mechanism and key parameters. Every word earns its place, with no redundant or vague phrasing. It is front-loaded with the core action and concludes with practical guidance.

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 description covers the essential aspects: what it does, how it works, key parameters, and a storage recommendation. An output schema exists, so return values need not be detailed. It lacks explicit error-handling or limitations (e.g., stores without products.json), but for a Shopify-specific extractor, it provides sufficient context for typical usage.

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 coverage is 0%, so the description must explain all parameters. It does so effectively: store_url is implied as the store being extracted, save_as is explained as the table name for storage, and max_products is described as capping the number of products. All three parameters are given meaningful context beyond their names.

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 a Shopify store's catalogue as one row per product variant, listing specific fields (price, sku, options, etc.). It distinguishes itself from siblings by mentioning it reads the public products.json and requires no rendering or selectors, which differentiates it from selector-based extraction tools like extract_by_selector and generic extract_products.

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 explains that it reads the store's public products.json, implying it works when that file is available. It also recommends using save_as for large catalogues, providing a practical usage tip. However, it does not explicitly state when not to use it or mention alternatives, though the context of Shopify-specific extraction is clear.

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

fetch_pageA

Fetch one web page and return its content as clean markdown with metadata. Set js_render=true for pages that need JavaScript to render (SPAs, infinite-scroll listings, most modern storefronts). If a rendered page still comes back sparse, give it longer with wait_ms, or wait for a specific element with wait_for (a CSS selector) — that is more reliable than a fixed delay. Article-shaped pages have their navigation, cookie banners and footers stripped automatically; set main_content=false to keep the whole page. PDFs are extracted to text.

actions drives the page before reading it (implies js_render). Each is {action, selector, ...}: click, type (text), press (key), wait (ms), wait_for, scroll (times), scroll_to_bottom (max_rounds) for infinite scroll, and click_until_gone (max_clicks) for a 'load more' button. Use it for cookie gates, paginated listings and search forms.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
actionsNo
wait_msNo
wait_forNo
js_renderNo
main_contentNo

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?

With no annotations provided, the description carries the full burden and delivers: automatic stripping of navigation/cookie banners/footers for articles, PDF extraction to text, actions implying js_render, and detailed behavior of each action type. This is thorough and goes beyond what annotations would typically provide.

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?

Every sentence earns its place. The description is front-loaded with the core purpose, then systematically covers parameters and actions. It is dense but not bloated, with a clean two-paragraph structure that separates basic usage from advanced 'actions' behavior.

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 tool's complexity (6 parameters, an actions array, multiple rendering modes), the description is remarkably complete. It covers all parameters, explains the actions schema, and provides practical example use cases. The output schema exists, so return values don't need explanation.

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?

The input schema has zero description coverage (only titles), so the tool description must compensate. It explains all parameters except the obvious 'url' — js_render, wait_ms, wait_for, main_content get clear usage context, and actions receives an entire paragraph with a complete list of action types and examples.

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 specific verb 'Fetch' and clearly identifies the resource ('one web page') and the result ('clean markdown with metadata'). It distinguishes itself from sibling tools like fetch_pages (plural) and crawl_site by focusing on single-page retrieval with rendering options.

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 extensive guidance on when to use each parameter: js_render for SPAs/infinite-scroll, wait_for over fixed delays, main_content to control stripping, and actions for cookie gates/paginated listings. It lacks explicit mention of when not to use this tool vs alternatives, so it's not a 5.

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

fetch_pagesA

Fetch many web pages in parallel. Returns JSON with results and errors. Set js_render=true for JavaScript-heavy pages. For more than about 20 URLs, pass save_as='' to write the pages into a result table and get back a summary instead of the full text — then use query_table to interrogate it without filling the conversation. When feeding a long URL list through in batches, pass mode='append' on every call after the first, or each batch replaces the last.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoreplace
urlsYes
save_asNo
wait_msNo
wait_forNo
js_renderNo

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?

With no annotations, the description carries the full burden. It discloses parallel fetching, return format (JSON with results and errors), optional JavaScript rendering, saving to a table, and the replace/append mode behavior. This covers the main behavioral traits. However, it does not mention potential side effects like whether saving to an existing table overwrites it (though mode explains this), nor rate limits or other constraints. Slightly more detail on error handling or table interactions would elevate it to 5.

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 a single paragraph but flows logically: core purpose, then key option, then batching guidance. It is not overly verbose for the complexity involved, though it could be broken into bullet points for clarity. Every sentence adds value, but the length might be slightly long. Still, it is well-structured and efficient.

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 description covers the major use cases: parallel fetch, JS-heavy pages, large URL batches via save_as, and batch replacement behavior. It also mentions the return format and follow-up with query_table. Given the tool's complexity (6 parameters, batching, parallel execution), it is complete enough for an agent to use effectively. The presence of an output schema (though not shown) and the description's hints at results/errors provide sufficient context.

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 coverage is 0%, so the description is the sole source of parameter meaning. It explains js_render (for heavy JS), save_as (to write to a table), and mode (append vs replace). However, wait_ms and wait_for are not mentioned, and urls is self-explanatory. Since important parameters like batching are well explained but others are omitted, this is adequate but not comprehensive. A 3 reflects that it partially compensates for the missing 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 clearly states 'Fetch many web pages in parallel', specifying the action (fetch), resource (web pages), and the batch nature (many, parallel). This distinctly differentiates it from the sibling 'fetch_page' tool, which likely handles single pages. The verb 'fetch' is specific and the scope (many pages) is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides rich usage guidance: when to set js_render for JavaScript-heavy pages, when to use save_as for >20 URLs to avoid filling the conversation, and the exact pattern for batching with mode='append'. It also references the complementary query_table tool for further interrogation. While it doesn't explicitly say 'use fetch_page for single pages', the name and context imply that, and the instructions cover the key scenarios for this tool.

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

find_placesA

Search for places and local businesses by name or description — 'the British Museum', 'cafes in Shoreditch'. Returns name, address, coordinates, phone, website, opening hours and category. Data comes from OpenStreetMap, so there are no star ratings or review counts; for those you would need a paid Google Places key. Pass save_as='' to store the results.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
save_asNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses the data source (OpenStreetMap), the absence of ratings, and the optional save_as behavior. It doesn't mention any side effects of saving (e.g., creating a table), but the save_as parameter hint is present. Overall, good disclosure for a search tool.

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?

Description is one long sentence but conveys all key points without fluff. It's front-loaded with purpose then examples. Could be split into clearer sentences, but effective. No wasted words.

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 presence of an output schema (which presumably details return structure), the description covers essential usage and limitations well. It tells the agent what to expect (fields), warns about a key limitation, and hints at saving results. For a search tool with 3 params, this is complete enough.

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 has 3 params with 0% description coverage EchoParam, so description must compensate. It explains 'query' via examples alludes to it and explicitly documents 'save_as'. But 'limit' is not mentioned at all. So partial 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?

Clear verb+resource: 'Search for places and local businesses by name or description'. Includes concrete examples and lists return fields. Distinguishes from find_places_nearby (implicitly, by not focusing on proximity) and search_web.

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?

States the query pattern and explicitly warns about data source limitation (no ratings/reviews) and suggests paid Google Places for that need. Doesn't explicitly say when not to use compared to siblings like find_places_nearby, but the limitation note serves as a guide.

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

find_places_nearbyA

Find every business of a category within a radius of a place — 'dentists near Bath', 'cafes within 2km of Shoreditch'. This is the tool for local lead generation: it returns name, address, phone, website and opening hours for each. category accepts friendly names (cafe, dentist, hotel, solicitor, gym, hairdresser, ...) or a raw OpenStreetMap tag like 'amenity=dentist'. Data is OpenStreetMap, so there are no star ratings. Pass save_as='' to store the results.

ParametersJSON Schema
NameRequiredDescriptionDefault
nearYes
limitNo
save_asNo
categoryYes
radius_mNo

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?

No annotations are provided, so the description carries the full behavioral burden. It discloses data source (OpenStreetMap), the absence of star ratings, returned fields, and the save_as storage side effect. It could mention rate limits or data availability, but it is reasonably transparent.

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?

Every sentence earns its place: purpose, examples, category syntax, data caveat, and save_as behavior. It is dense but not bloated, with no wasted words.

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?

For a 5-parameter list-style tool with an output schema available, the description covers purpose, parameter semantics, output fields, and side effects. Minor gaps like limit semantics and explicit radius units are addressed by schema defaults and parameter naming.

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 description coverage is 0%, so the description compensates by explaining category (friendly names vs. OSM tags), near (place names), radius, and save_as. Limit is not addressed, but the description adds substantial semantic value beyond the bare schema.

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?

Clearly states it finds every business of a given category within a radius of a place, with concrete examples and expected return fields. The phrase 'This is the tool for local lead generation' helps distinguish it from the sibling find_places.

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?

Gives explicit use-case context ('dentists near Bath', 'cafes within 2km of Shoreditch', local lead generation). It does not explicitly name when-not-to-use or alternatives, but the context is clear enough to guide tool selection.

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

get_tableA

Inspect one result table: its columns, row count, and a small sample of rows.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
sampleNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It transparently states the tool's read-only inspection nature and enumerates the returned information (columns, row count, sample rows). It does not discuss error cases or prerequisites, but for a simple inspection tool this is adequate.

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 a single, front-loaded sentence with no filler or repetition. Every word contributes to explaining the tool's purpose and output.

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, has an output schema, and the description covers the core behavior and return contents. It does not explain prerequisites or edge cases, but the presence of an output schema and the low complexity make the description sufficiently 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 0%, so the description must compensate for parameter meaning. It indirectly maps to the parameters: 'one result table' implies the `name` parameter, and 'a small sample of rows' implies `sample`. However, it does not explicitly name or explain either parameter, leaving some ambiguity.

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 ('Inspect') and resource ('one result table') and clearly enumerates what is returned: columns, row count, and a sample of rows. This distinguishes it from siblings like list_tables (listing all tables) and query_table (running queries).

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 phrase 'Inspect one result table' clearly conveys when to use this tool: when you need details about a single table rather than listing or querying tables. It does not explicitly name alternatives or exclusions, but the context is clear enough for an agent to differentiate it from sibling tools.

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

inspect_networkA

Render a page and report the API calls it makes, with their JSON responses. A JavaScript site usually loads its data from an endpoint you can read directly — cleaner and far cheaper than parsing rendered markup, and it survives redesigns that break selectors. Use this when a page is hard to scrape, then fetch the endpoint it reveals. Set include_types to widen beyond JSON.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
save_asNo
wait_msNo
wait_forNo
include_typesNojson
max_body_charsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool renders a page and inspects network calls, and mentions that include_types controls content type. However, it does not explain broader details such as whether this triggers side effects, how many requests are captured, how responses are truncated, or what the output structure contains.

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 two sentences and front-loaded with the core purpose before expanding on when and why to use this tool. Every sentence earns its place, including the rationale about cleanliness, cost, and resilience to redesigns.

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

Completeness2/5

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

The description provides a strong strategic context but lacks enough operational detail to fully guide an agent invoking this tool. Although the output schema reduces some need to describe return values, the six parameters are mostly undocumented, and there are no annotations to fill the gap. Important context like save_as behavior, wait_for semantics, and max_body_chars limits is absent.

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?

The input schema has zero description coverage, so the description must compensate. It only explains one parameter, include_types ('widen beyond JSON'), and says nothing about the semantics or typical values of url, save_as, wait_ms, wait_for, or max_body_chars. The value added beyond schema is minimal.

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's function: 'Render a page and report the API calls it makes, with their JSON responses.' It uses a specific verb and resource combination and distinguishes itself from sibling tools like fetch_page and extract_by_selector by focusing on discovering network endpoints rather than fetching or parsing pages directly.

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 recommends using this tool 'when a page is hard to scrape' and suggests the follow-up action 'fetch the endpoint it reveals.' It contrasts the approach with parsing rendered markup, noting it is 'cleaner and far cheaper,' but it does not explicitly name alternative sibling tools for contrast.

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

list_shopify_collectionsA

List a Shopify store's collections with their product counts. Use this to pick which collections to extract before calling extract_shopify_store.

ParametersJSON Schema
NameRequiredDescriptionDefault
store_urlYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

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 full burden of disclosure. It states the tool lists collections with counts but does not mention any side effects, authentication requirements, network behavior, or data format details. For a simple read operation, this is acceptable but minimal; it does not contradict annotations (none exist) and provides some context about output (product counts).

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 two sentences, both purposeful: the first states what the tool does, the second gives usage guidance. There is zero wasteful text, and the structure is appropriately front-loaded with the core functionality.

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?

The tool is simple (1 param, output schema exists) and the description covers basic purpose and usage. However, it does not explain the store_url parameter or any behavioral details like pagination or output shape, relying entirely on the output schema (not shown here). Given the tool's simplicity, this is adequate but not exceptional, missing some context that could help the agent use it correctly.

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

Parameters1/5

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

The schema has 0% description coverage for the single parameter store_url, and the description does not explain it at all. The tool description only mentions 'a Shopify store's collections' but does not clarify the format, scheme, or required structure of store_url. Since the schema provides no guidance and the description adds no parameter-specific meaning, this is a significant gap.

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 lists a Shopify store's collections and includes product counts, which is specific and distinct from the sibling extract_shopify_store tool. It names the resource (collections) and the action (list) without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells when to use this tool: 'Use this to pick which collections to extract before calling extract_shopify_store.' It gives a clear use case and directly references the alternative/extraction tool, leaving no doubt about its purpose in the workflow.

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

list_tablesA

List saved result tables with their row counts and columns. Result tables are produced by any tool called with save_as.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It states the provenance of tables (produced via save_as) and what the output includes (row counts and columns), implying a read-only listing operation with no side effects.

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 short sentences pack the essential information: what is listed, what is included, and where tables come from. No filler or redundancy.

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 the tool has no parameters and an output schema exists for return values, the description fully covers the necessary context: what the tool does, what its output summarizes, and how result tables originate. No critical information 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 schema coverage is complete and there are no parameter meanings to clarify. The baseline of 4 applies because the description has no parameter burden to fulfill.

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 ('List') and names the exact resource ('saved result tables'), plus states the returned information (row counts and columns). It clearly distinguishes this tool from siblings like get_table, query_table, and drop_table.

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 explains that result tables are produced by any tool called with save_as, giving clear context for when saved tables exist and when this listing tool is relevant. It does not explicitly name alternatives or exclusions, but for a zero-parameter list operation this is sufficient.

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

list_trackedA

List the pages being tracked for changes, with when each was last seen.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description must stand alone. It says 'List the pages being tracked' which implies a read-only operation, but it doesn't explicitly state that it doesn't modify data or mention any side effects. For a simple list operation, this is acceptable but minimal.

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 a single sentence, front-loaded with the action and resource, and includes relevant details like 'with when each was last seen'. No unnecessary words.

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?

Given that it's a simple list operation with no parameters and an output schema provided, the description is sufficient. It clearly states what it returns (pages and last-seen times). It doesn't mention any limitations or relationships to other tools, but for a straightforward list, this is adequate.

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?

There are no parameters, so the description doesn't need to explain any. It correctly reflects that no input is required.

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 (

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 states the purpose (listing tracked pages) but does not explicitly mention when to use it over alternatives or any preconditions. It's clear enough that this is the tool to check currently tracked pages, but lacks explicit exclusion guidance.

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

query_tableA

Run a read-only SQL SELECT against saved result tables. This is how you analyse a large scrape without pulling it into the conversation: filter, aggregate, group and sort a table of any size and get back only the rows you asked for. Only SELECT is permitted — the query can never modify saved data. Example: SELECT vendor, COUNT(*) AS n, AVG(price) AS avg_price FROM catalogue GROUP BY vendor ORDER BY n DESC.

Pass save_as='' to persist the query's result as a new table. That is how you clean data here: SELECT DISTINCT deduplicates, aliases rename columns, a || ', ' || b AS c merges them, and WHERE drops unwanted rows — all in one step, with the original left untouched unless you deliberately target its name.

ParametersJSON Schema
NameRequiredDescriptionDefault
sqlYes
save_asNo
max_rowsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and does an excellent job: it declares read-only behavior, states that only SELECT is permitted, clarifies the query can never modify saved data, and explains that original data remains untouched unless the save_as name deliberately targets the original table.

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 well-structured: the main purpose and safety context come first, followed by a realistic example and a practical save_as workflow. It is slightly longer than necessary due to some restatement of safety guarantees, but every key concept contributes meaningfully.

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?

The description is strong for primary behavior and saving results, but it leaves out the max_rows semantic, which is important for agents deciding whether they will receive all matching rows or only a capped page. Given an output schema exists, return values are not needed, but the parameter gap prevents this from being fully 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?

The description gives strong, concrete meaning to sql and save_as through an example and workflow explanation. However, schema description coverage is 0% and max_rows is never mentioned, so the 200-row default limit and its impact on returned output are left undocumented.

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 action, 'Run a read-only SQL SELECT', and names the exact resource, 'saved result tables'. It distinguishes itself from extraction and export siblings by focusing on in-place analysis with filters, aggregation, and grouping, and it explicitly says it is how you analyse a large 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?

It clearly states when to use it: when you need to analyse a large scrape without pulling all data into the conversation. It also gives a clear workflow for saving cleaned results with save_as. However, it does not explicitly name alternative tools like get_table or list_tables for cases where this tool is not the right fit.

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

search_webA

Search the web and get back ranked results with titles, URLs and snippets — the way in when you have a question rather than a URL. Feed the urls straight into fetch_pages or extract_by_selector. No API key and no quota.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
save_asNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

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 behavioral disclosure burden. It discloses the output shape (ranked results with titles, URLs, snippets) and access characteristics (no API key, no quota), which is helpful. However, it does not explain the behavior of the save_as parameter, limit handling, or any potential side effects such as saving results locally.

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 two sentences with no filler. It front-loads the core action and result format, then adds workflow guidance and access constraints, making every sentence earn its place.

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?

The tool is simple with only one required parameter and an output schema, so the description covers the main usage scenario well. However, the unexplained save_as parameter and lack of any annotation leave a gap in understanding the full side effects and input semantics, making it not fully complete.

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?

Schema description coverage is 0%, so the description must compensate for parameter meaning, but it does not explain limit or save_as explicitly. The query parameter is loosely implied by 'a question', but the other two parameters rely entirely on their names and defaults for inference. This leaves meaningful ambiguity, especially for save_as.

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 performs web searches and returns ranked results with titles, URLs, and snippets. It explicitly positions the tool as the entry point for question-based lookups rather than URL-based processing, which distinguishes it from sibling tools like fetch_pages and extract_by_selector.

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 gives strong usage context: use it when you have a question rather than a URL, and then feed resulting URLs into fetch_pages or extract_by_selector. It does not enumerate alternative search tools or explicitly state when not to use it, but the 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.

track_changesA

Fetch a page and report what changed since the last time it was checked. Returns status 'new', 'same' or 'changed', with a unified diff and line counts when it changed. This is monitoring without a scheduler: check a price, a job board or a policy page whenever you want and see only the difference.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
js_renderNo
context_linesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations available, the description carries the behavioral transparency burden and does a good job: it discloses the stateful 'since the last time it was checked' behavior, the possible status values, unified diff output, line counts, and that this is not scheduled. It could add more detail about storage or rate limits, but it is still substantially transparent.

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 two sentences long, front-loads the core action, and every sentence adds value. It avoids repetition and boilerplate while still giving examples and return behavior.

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 description is fairly complete for a moderately stateful tool: it explains what the tool does, what it returns, and when to use it. The main gap is parameter semantics, but since an output schema exists and the core lifecycle is described, the overall context is sufficient for most monitoring use cases.

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?

Schema description coverage is 0%, and the description does not explain js_render or context_lines at all. The URL parameter is implied by 'Fetch a page', but the boolean rendering flag and diff context setting are left unexplained, so an agent cannot confidently tune those parameters.

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 action ('Fetch a page and report what changed since the last time it was checked') and clearly differentiates from sibling tools by emphasizing comparison, diff output, and monitoring statuses. Concrete use cases like price, job board, and policy page make the purpose immediately understandable.

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?

It says this is 'monitoring without a scheduler' and gives examples of when to use it, which provides clear usage context. However, it does not explicitly contrast with sibling tools such as fetch_page or search_web, nor does it mention exclusions or when not to use it.

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

untrackC

Stop tracking a page and forget its stored snapshot.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the stored snapshot is forgotten, which is useful, but it does not disclose whether this is destructive (irreversible), whether it affects other tracked data, or any side effects. The description is minimal and leaves the agent guessing about the consequences.

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 a single, concise sentence that is front-loaded with the main action. It is efficient and to the point, though it could be slightly more informative without becoming verbose.

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

Completeness2/5

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

Given the tool's simplicity (one parameter, no annotations, no output schema details), the description is somewhat adequate but lacks important context. It does not explain the effect on the snapshot, whether the action is reversible, or any related tools. The description is too sparse to fully guide an agent, especially without annotations.

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?

The schema has 0% description coverage, and the description does not explain the 'url' parameter beyond its name. The description implies the URL identifies the page to untrack, but it does not clarify format, validation, or behavior for invalid URLs. The description adds minimal value over the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (stop tracking) and the resource (a page), and it adds the detail about forgetting the stored snapshot, which distinguishes it from simply pausing or disabling tracking. It is specific enough to differentiate from sibling tools like track_changes and list_tracked.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide any guidance on when to use this tool versus alternatives, nor does it mention any prerequisites or conditions. It implies usage (when you want to stop tracking a page) but lacks explicit context or exclusions.

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. Dates show when Glama detected each change.

  1. 22 tool updatesv0.1.1
    • Addeddrop_table
    • Addedexport_table
    • Addedextract_by_selector
    • Changedextract_emails2 fields changed
      • addedInput schema / properties / mode
        Added value: +{
        +  "default": "replace",
        +  "title": "Mode",
        +  "type": "string"
        +}
      • addedInput schema / properties / save_as
        Added value: +{
        +  "default": "",
        +  "title": "Save As",
        +  "type": "string"
        +}
    • Changedextract_links2 fields changed
      • addedInput schema / properties / mode
        Added value: +{
        +  "default": "replace",
        +  "title": "Mode",
        +  "type": "string"
        +}
      • addedInput schema / properties / save_as
        Added value: +{
        +  "default": "",
        +  "title": "Save As",
        +  "type": "string"
        +}
    • Changedextract_phones2 fields changed
      • addedInput schema / properties / mode
        Added value: +{
        +  "default": "replace",
        +  "title": "Mode",
        +  "type": "string"
        +}
      • addedInput schema / properties / save_as
        Added value: +{
        +  "default": "",
        +  "title": "Save As",
        +  "type": "string"
        +}
    • Addedextract_products
    • Addedextract_shopify_store
    • Changedextract_social_links2 fields changed
      • addedInput schema / properties / mode
        Added value: +{
        +  "default": "replace",
        +  "title": "Mode",
        +  "type": "string"
        +}
      • addedInput schema / properties / save_as
        Added value: +{
        +  "default": "",
        +  "title": "Save As",
        +  "type": "string"
        +}
    • Changedfetch_page4 fields changed
      • addedInput schema / properties / actions
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "additionalProperties": true,
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "title": "Actions"
        +}
      • addedInput schema / properties / main_content
        Added value: +{
        +  "default": true,
        +  "title": "Main Content",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / wait_for
        Added value: +{
        +  "default": "",
        +  "title": "Wait For",
        +  "type": "string"
        +}
      • addedInput schema / properties / wait_ms
        Added value: +{
        +  "default": 0,
        +  "title": "Wait Ms",
        +  "type": "integer"
        +}
    • Changedfetch_pages4 fields changed
      • addedInput schema / properties / mode
        Added value: +{
        +  "default": "replace",
        +  "title": "Mode",
        +  "type": "string"
        +}
      • addedInput schema / properties / save_as
        Added value: +{
        +  "default": "",
        +  "title": "Save As",
        +  "type": "string"
        +}
      • addedInput schema / properties / wait_for
        Added value: +{
        +  "default": "",
        +  "title": "Wait For",
        +  "type": "string"
        +}
      • addedInput schema / properties / wait_ms
        Added value: +{
        +  "default": 0,
        +  "title": "Wait Ms",
        +  "type": "integer"
        +}
    • Addedfind_places
    • Addedfind_places_nearby
    • Addedget_table
    • Addedinspect_network
    • Addedlist_shopify_collections
    • Addedlist_tables
    • Addedlist_tracked
    • Addedquery_table
    • Addedsearch_web
    • Addedtrack_changes
    • Addeduntrack
  2. 8 tool updatesv0.1.0
    • First observedanalyze_website
    • First observedcrawl_site
    • First observedextract_emails
    • First observedextract_links
    • First observedextract_phones
    • First observedextract_social_links
    • First observedfetch_page
    • First observedfetch_pages

TDQS

A3.6/5.0
Disambiguation4/5

Most tools map to clearly distinct actions, and the long descriptions help separate them. However, extract_social_links vs extract_links and extract_products vs extract_shopify_store have overlapping extraction semantics that could cause misselection without careful reading.

Naming Consistency4/5

The set consistently uses snake_case verb-first names like list_tables, fetch_page, extract_products, and query_table. Minor exceptions include untrack and list_tracked, which omit an explicit object, and extract_by_selector, which names a method rather than a target.

Tool Count3/5

At 24 tools, the server sits squarely in the 16-25 'heavy' band. Each tool addresses a real scraping need, but the count is at the edge of what an agent can comfortably navigate without grouping or menus.

Completeness4/5

The toolset covers the scraping lifecycle well: discovery, fetching, extraction, table persistence, querying, export, deletion, and change tracking. Minor gaps exist, such as no direct table row editing or binary file download, but they are workaroundable via query_table and fetch_page.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    An MCP server for web content extraction that converts HTML pages into clean, LLM-optimized Markdown using Mozilla's Readability. It supports batch processing, intelligent multi-page crawling, and configurable caching while respecting robots.txt standards.
    43
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Open-source web scraper and extraction MCP server with JavaScript rendering, markdown output, PDF/DOCX parsing, structured errors, and validated extraction contract diagnostics for agents.
    2
    AGPL 3.0
  • A
    license
    Not graded
    quality
    A
    maintenance
    Remote MCP server for web scraping with anti-bot evasion. Provides stealth HTTP fetching, headless browser with Cloudflare bypass, CSS selectors, YouTube transcripts, and Markdown conversion.
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/maccydee/cute-web-scraper'

If you have feedback or need assistance with the MCP directory API, please join our Discord server