Skip to main content
Glama

Presence check (not an answer check)

verify_presence
Read-only

Presence only: confirms the value appears on the page, NOT that it is the right answer to what was asked. Never returns pass. A was-price, a different variant's price, a shipping cost, or a tax figure can all satisfy presence. Verdicts are present, fail, or unverifiable, signed, with check_type web_field_presence_v1. Use it as a cheap screen before a full check, or when you already know what the value means and only need to confirm it still appears on the page. If your decision depends on the value being the right value, call verify_web_field instead. Scope: server-rendered pages. $0.002 per check, 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.9/5.0
Behavior5/5

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

The description goes well beyond annotations by disclosing that the tool 'Never returns pass', the possible verdicts ('present, fail, or unverifiable'), and that values like 'a was-price, a different variant's price, a shipping cost, or a tax figure' can satisfy presence. It also states the check_type and payment method. No contradiction with readOnlyHint/openWorldHint is present.

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 efficient and information-dense. Every sentence contributes: purpose, non-return of 'pass', examples, verdict types, usage guidance, alternative tool, scope, and cost. It is front-loaded with the core distinction ('Presence only...') and remains focused 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?

The description covers all essential context: what the tool does, when to use it, when not to, behavioral nuances, limitations (server-rendered pages), and pricing. Since an output schema exists, the absence of return-format detail is acceptable. It is fully adequate for an AI agent to select and invoke the tool correctly.

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?

While the schema already provides 100% coverage for parameter descriptions, the tool description adds crucial interpretation for the 'claim' parameter: presence is not correctness, and gives concrete examples of what counts as present. This adds semantic value beyond the schema definitions.

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 a presence-only check: 'confirms the value appears on the page, NOT that it is the right answer to what was asked.' It explicitly differentiates from the sibling tool verify_web_field by naming it and stating when to call it instead. The title also reinforces the purpose.

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 explicit usage guidance: 'Use it as a cheap screen before a full check, or when you already know what the value means and only need to confirm it still appears on the page.' It also provides a clear exclusion: 'If your decision depends on the value being the right value, call verify_web_field instead.' It even notes scope (server-rendered pages) and cost.

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.