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.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • addedInput schema / properties / tolerance_pct
      Added value: +{
      +  "description": "Max 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.",
      +  "type": "number"
      +}
  2. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations (readOnly, openWorld, idempotent, non-destructive), the description discloses the two processing paths, the exact verdict values returned, and the critical semantics of 'could_not_verify' (i.e., the check did not happen, carries verification_error, and must not be interpreted as evidence). This is exactly the kind of behavioral nuance an agent needs to correctly interpret results and avoid misleading users.

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 compact but information-dense. Every sentence serves a purpose: trigger language, when to use, pipeline logic, return values, special verdict cautions, and a note on efficiency. It is well-structured with a clear flow from purpose to usage to output semantics, and avoids redundancy with the annotations or schema.

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 and the absence of an output schema, the description is remarkably complete. It explains what the tool does, when to use it, how it behaves (two paths), what it returns (verdicts, citations, reasoning), and how to interpret edge cases (could_not_verify vs unsupported). An agent would be well-equipped to invoke this tool and correctly interpret its results.

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%, so the baseline is 3. The description does not add much parameter-specific detail beyond what the schema already provides. It gives useful examples for the 'claim' parameter and explains tolerance implications indirectly through verdict definitions, but it does not elaborate on tolerance_pct outside of the schema. The schema carries the primary burden here.

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 rich set of natural-language trigger phrases and clearly states the tool performs claim verification against authoritative sources. It explicitly differentiates itself from a generic search/lookup tool by describing the two distinct verification pipelines (SEC EDGAR/XBRL for company-financial claims, and a grounded pipeline for all other factual claims) and by noting it replaces 4–6 sequential calls.

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 a clear usage context: 'Use whenever the agent needs to check whether something a user said is factually correct.' It also explains the automatic routing behavior for different claim types. However, it does not explicitly mention when not to use this tool or name specific alternative tools (e.g., deep_research, ask_pipeworx_grounded) that might be more appropriate for open-ended research rather than discrete fact-checking.

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

Most tools have clear, distinct purposes with detailed descriptions that differentiate them. However, there is some overlap among data query tools (e.g., ask_pipeworx, deep_research, entity_profile) and among Polymarket analysis tools, which could cause confusion for an agent.

Naming Consistency2/5

Tool names lack a consistent pattern, mixing snake_case (ai_visibility_check, bet_research) with descriptive phrases (ask_pipeworx, generate_llms_txt) and some with verbs (list_subscriptions, remember). This inconsistency makes it harder to predict tool names.

Tool Count3/5

With 34 tools, the server covers a broad scope including data querying, Polymarket analysis, SMS management, and utilities. While many tools are justified, the number feels slightly high and some tools (e.g., multiple Polymarket tools) might be consolidated.

Completeness4/5

The server provides comprehensive coverage for data analysis, entity resolution, fact-checking, and monitoring. However, SMS management lacks create/update operations for keywords and subscribers, and there is no tool for sending SMS messages, indicating minor gaps.