Skip to main content
Glama

Verify scraped claim (full)

verify_web_field
Read-only

Checks whether a value you did not fetch yourself is actually on the source page right now, and returns a signed pass/fail/unverifiable verdict. Not a retrieval tool: it checks a value you already have, it does not find data for you. Use it when you hold a value that came from somewhere else (a search result, a scraper, an upstream API, another agent) and you need to know it is on the source page before you act on it. Takes the URL, the claimed value, and what was asked; it independently re-fetches the page and never trusts the fetch you were given. Structural guarantee: a claim is never certified unless the re-fetched page contains it, and the model judge can only veto a pass, never create one. Anything unconfirmed returns unverifiable, never pass. Every verdict carries a stable verdict_id, the engine digest that produced it, and a signature verifiable offline against the public key (see get_verifier_info). Scope: server-rendered pages; JS-only content returns unverifiable rather than a guess. $0.01 per check, first 100 free, paid in-band via x402.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL of the source page the claim was scraped from
askedYesWhat the scraper was asked to extract, e.g. "get the current price and stock status"
claimYesThe scraped field(s) to verify against the live page, e.g. {"price": "£51.77", "in_stock": true}

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
engineYes
key_idNo
reasonsYes
verdictYes
evidenceYes
signatureYes
check_typeYes
confidenceYes
verdict_idYes
source_hashNo
verifier_urlNo

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses many behavioral traits beyond the annotations: it independently re-fetches the page and 'never trusts the fetch you were given', explains the structural guarantee ('the model judge can only veto a pass, never create one'), describes the signed verdict payload (verdict_id, engine digest, offline-verifiable signature), notes that JS-only content returns unverifiable rather than guessing, and even adds cost. This is far richer than the annotations alone.

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 dense yet every sentence earns its place: purpose, non-retrieval distinction, usage trigger, re-fetch behavior, structural guarantee, verdict details, scope, and pricing. It is front-loaded with the primary purpose and structured logically, making it efficient despite its length.

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, the presence of an output schema, and detailed annotations, the description is operationally complete. It covers limitations (JS-only content), what happens with unconfirmed claims, the format and verifiability of verdicts, and the pricing model. An agent has all the information needed to decide when to invoke it and what to expect.

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 input schema has 100% coverage for all three parameters, each with descriptive text and examples (e.g., 'What the scraper was asked to extract'). The description only recaps the parameter list ('Takes the URL, the claimed value, and what was asked') without adding new constraints, formats, or semantics beyond the schema. Baseline 3 is appropriate because the schema already carries the full meaning.

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 precise statement of action and outcome: 'Checks whether a value you did not fetch yourself is actually on the source page right now, and returns a signed pass/fail/unverifiable verdict.' It explicitly disambiguates from retrieval tools ('Not a retrieval tool: it checks a value you already have, it does not find data for you'), which also distinguishes it from sibling tools. This is a clear, specific verb+resource definition.

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 gives an explicit when-to-use scenario: 'Use it when you hold a value that came from somewhere else... and you need to know it is on the source page before you act on it.' It also states when not to use it ('Not a retrieval tool') and references get_verifier_info for signature verification, providing an alternative link. The scope limitation to server-rendered pages further guides appropriate use.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_verifier_info provides metadata, verify_presence is a cheap presence-only check, and verify_web_field is the full semantic verification. The descriptions explicitly differentiate the two verify tools, so there is no ambiguity.

Naming Consistency4/5

Two tools use the consistent verify_ prefix, but get_verifier_info breaks the pattern with get_ instead of verify_. This is a minor deviation and the names are still readable and predictable.

Tool Count5/5

Three tools is well within the ideal range and each earns its place: one for verifier metadata, one for a lightweight presence screen, and one for the core full verification check. The scope is narrow and the tool count matches it.

Completeness5/5

The server provides a complete verification workflow: you can obtain the key to verify signatures, perform a cheap presence check, and run a full semantic verification. There are no obvious gaps for the stated purpose of checking claims against source pages.