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.6/5.0
Behavior5/5

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

Annotations already declare the tool as read-only, open-world, idempotent, and non-destructive. Beyond that, the description discloses critical behavioral details: the dual-path routing logic, the specific verdict types, the meaning of 'could_not_verify' with verification_error field, and a warning not to interpret it as evidence. It also notes the tool aggregates 4-6 calls, which is a useful execution insight for the agent.

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 long but information-dense, with every sentence contributing: example queries, path routing, verdict list, caller warning, and a benefit statement. It is front-loaded with the core purpose in the first sentence. While not as terse as a two-line description, the length is justified by the tool's complexity and the need to explain error semantics.

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 carries the burden of explaining return values, and it does thoroughly: verdict types, the actual value with citation, reasoning, and the special meaning of could_not_verify vs unsupported. It covers the main scenarios (company-financial and generic claims), error handling, and the replacement-of-multiple-calls benefit. This is complete for an agent to invoke and interpret results 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?

Input schema covers both parameters with clear descriptions (100% coverage), so baseline is 3. The description adds extra meaning by explaining how tolerance_pct overrides the implied tolerance and how to use it for hallucination detection (set 1-2). It also provides examples for the claim parameter, reinforcing the schema. This goes beyond the schema's literal field descriptions.

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's function: natural-language claim verification against authoritative sources. It provides a specific verb ('validate', 'verify'), the resource (claims), and distinguishes itself from siblings by framing it as a consolidated verification tool that replaces multiple sequential calls. The examples ('Is it true that…', 'fact check') make the purpose instantly recognizable.

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 explicitly says 'Use whenever the agent needs to check whether something a user said is factually correct,' which is strong when-to-use guidance. It also differentiates between company-financial claims (SEC EDGAR fast path) and other claims (grounded pipeline), giving routing context. However, it doesn't mention when not to use it or provide alternative tools for general fact lookup, though the routing logic implies alternatives exist.

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 have unclear boundaries: ask_pipeworx_beta is explicitly identical to ask_pipeworx right now, and deep_research, validate_claim, discover_tools, and suggest_questions all overlap with the ask_pipeworx family. The prediction-market cluster also has six tools whose distinctions require careful reading, making mis-selection likely.

Naming Consistency3/5

Most names are lowercase snake_case and reasonably descriptive, but no consistent verb_noun pattern holds across the set. entity_profile, recent_alerts, and pipeworx_trending are noun phrases, while compare_entities, resolve_entity, and validate_imei are verbs, and the useful ask_pipeworx_* and polymarket_* prefixes are not applied server-wide.

Tool Count2/5

33 tools is too many for an agent to navigate efficiently, especially since the underlying data surface is already hidden behind ask_pipeworx and dozens more tools. The set spans data research, prediction markets, memory, subscriptions, IMEI validation, dependency scanning, and llms.txt generation, making it feel like a grab bag rather than a focused server.

Completeness3/5

The main query/verify/research/monitor workflow is covered well: ask, grounded, deep research, claim validation, entity profiles, comparisons, subscriptions, and memory all exist, so common paths have few dead ends. However, the set is not a single coherent domain, and there is no direct fetch/read-record tool or prediction-market execution tool, leaving some reasonable follow-up actions implicit.