Skip to main content
Glama

Check a fact before relying on it

check_before_relying
Read-onlyIdempotent

Check whether a fact can be corroborated before your task depends on it. Free, read-only, no side effects.

Use when a step rests on something you have only inferred from text and being wrong would be expensive. Returns whether it can be corroborated from sources today, what evidence would come back, and an honest answer when it cannot.

Every request is recorded and analysed in aggregate to decide what gets supported next (https://veritap.dev/terms).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deadlineNoISO8601. When the answer stops being useful.
locationNoWhere the fact must be checked.
claim_typeNoOptional. A claim type id from the published catalog, if you know it.
callback_urlNoOptional. If this claim is not supported yet, POST here when it becomes supported. Otherwise you are told on your next call.
task_contextNoThe wider task this step belongs to.
cost_if_wrongNoWhat happens to your task if this fact is wrong: "blocks_task", "degrades_answer", or "cosmetic".
claim_descriptionYesFree text. The real-world fact you need settled. Required.
downstream_actionNoWhat you will do with the answer once you have it.
budget_ceiling_usdNoMost you would pay for this answer. Directly drives what gets built next.

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. Beyond that, the description adds valuable context: it explicitly states the tool is free, read-only, has no side effects, and discloses that every request is recorded and analyzed in aggregate. It also promises an 'honest answer when it cannot' corroborate, which is useful open-world nuance.

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 compact and front-loaded: first sentence states the purpose, second gives when-to-use and return behavior, third covers privacy. It has minimal filler, though it slightly repeats the annotation's read-only hint. Overall it is efficient 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?

With no output schema, the description adequately summarizes what the tool returns: 'whether it can be corroborated from sources today, what evidence would come back, and an honest answer when it cannot.' It also explains the purpose, usage conditions, and privacy implications. It does not detail the unsupported-claim callback flow, but the schema covers the callback_url parameter, so the description is reasonably complete for a tool of this complexity.

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 with detailed descriptions for all 9 parameters, so the description does not need to explain each one. The description adds no per-parameter semantics beyond what the schema already provides, which fits the baseline of 3 for high schema coverage.

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

Purpose5/5

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

The description opens with a specific verb+resource: 'Check whether a fact can be corroborated before your task depends on it.' This clearly sets it apart from sibling tools like check_feasibility or check_physical_condition by focusing on source corroboration of an inferred fact, not on other kinds of checks.

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 gives an explicit trigger: 'Use when a step rests on something you have only inferred from text and being wrong would be expensive.' This establishes when to use the tool and implicitly tells the agent not to use it for facts that are already directly stated. It does not name alternatives among sibling tools, so it stops short of the highest score.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation2/5

Several tools overlap significantly. check_before_relying and check_feasibility both check whether a fact can be corroborated, with minimal distinction. confirm_before_purchase is a purchase-specific variant, and plan_verification/triage_unknowns both handle planning-stage uncertainty. Agents would struggle to pick the right one.

Naming Consistency2/5

The verb set is inconsistent: check, confirm, plan, triage. Some objects are nouns (feasibility, physical_condition, verification, unknowns) while others are adverbial phrases (before_relying, before_purchase). No uniform verb_noun pattern.

Tool Count4/5

Six tools is within a reasonable range for the verification domain. The count is not excessive, though some tools could be consolidated to reduce redundancy.

Completeness4/5

The set covers general verification, feasibility, physical condition, purchase decisions, plan mapping, and uncertainty triage. Minor gaps exist (e.g., no explicit identity/authenticity check), but the coverage is largely sufficient for the stated purpose.

Resources