Skip to main content
Glama

Validate Claim

validate_claim
Read-onlyIdempotent

"Is it true that…" / "fact check" / "verify the claim that…" / "did X really…" / "was Y actually…" / "confirm or refute" / "true or false" — natural-language claim verification against authoritative sources. Use whenever the agent needs to check whether something a user said is factually correct. Company-financial claims (revenue, net income, cash for public US companies) verify via the structured SEC EDGAR + XBRL fast path with exact percent-delta math; ANY OTHER factual claim (macro statistics, rates, prices, drug data, records) automatically falls through to the grounded pipeline — routed to the right live source, answered with verbatim evidence, then judged. Returns a verdict (confirmed / approximately_correct / refuted / inconclusive / unsupported / could_not_verify), the grounded or structured actual value with pipeworx:// citation, and reasoning. IMPORTANT for callers: could_not_verify means the check did not happen (our LLM or source failed) and carries verification_error{stage,detail} — it is NOT evidence for or against the claim, and must not be shown as one. unsupported means we looked and cover no source for it. Replaces 4–6 sequential calls (NL parsing → entity resolution → data lookup → comparison).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claimYesNatural-language factual claim, e.g., "Apple's FY2024 revenue was $400 billion" or "Microsoft made about $100B in profit last year".
tolerance_pctNoMax percent deviation still graded approximately_correct (0.5–50). Overrides the tolerance implied by the claim wording — set 1–2 for hallucination detection where any material error must be refuted. Default: implied by wording, capped at 5.

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already indicate read-only, open-world, and idempotent behavior, but the description adds crucial nuance: the distinction between 'could_not_verify' (check did not happen, not evidence) and 'unsupported' (cover no source). It also details return values (verdict, actual value, citation, reasoning) and the fallback pipeline, which the annotations do not convey.

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?

Although longer than typical, every sentence adds value: query examples, scope, routing logic, return types, and a critical caller caveat. It is front-loaded with common phrasings and purpose, and the structure is logically organized. 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?

With no output schema, the description fully specifies expected outcomes (verdict list, actual value, citation, reasoning) and explains failure modes. For a tool with two parameters and rich annotations, it covers all necessary context: when to use, how it routes, what results mean, and how to interpret edge cases.

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

Parameters3/5

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

Schema description coverage is 100% with detailed descriptions for both parameters. The tool description adds no additional meaning beyond the schema; it mentions 'exact percent-delta math' but does not elaborate on tolerance_pct beyond what the schema already provides. Thus baseline 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 states a specific verb (validate) and resource (natural-language claim) against authoritative sources, and differentiates from siblings by explicitly covering two routing paths (SEC EDGAR for company-financial claims, grounded pipeline for everything else). It also distinguishes its scope (fact-checking) from general research tools.

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?

Explicitly says 'Use whenever the agent needs to check whether something a user said is factually correct' and explains how to categorize claims (company-financial vs. other). It also notes that it replaces 4-6 sequential calls, guiding the agent to prefer this tool over composing workflows.

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.9/5.0
Disambiguation4/5

Most tools have distinct purposes, but there is some overlap among closely related ones (e.g., ask_pipeworx, ask_pipeworx_grounded, deep_research; multiple Polymarket tools). Descriptions are detailed enough to differentiate, but an agent might still misselect on subtle differences.

Naming Consistency4/5

Names consistently use lowercase with underscores, but no strong verb_noun pattern. Some are noun-based (airquality, nowcast), others verb-based (ask_pipeworx, compare_entities). This is readable but not perfectly predictable.

Tool Count4/5

35 tools is high but justified by the server's broad scope (data queries, betting analysis, weather, memory, subscriptions). The number feels appropriate given the comprehensive functionality described.

Completeness5/5

The tool set covers an impressively wide range of capabilities: data querying with multiple modes, entity profiling, comparisons, search, betting analysis, weather, memory, subscriptions, and feedback. Missing features (e.g., updating memories) are minor; the surface is remarkably complete.