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?

The annotations already indicate a safe, read-only, idempotent operation, so the bar for added value is lower. The description goes well beyond annotations by clarifying the meaning of 'could_not_verify' (an error, not evidence) and 'unsupported' (no source covered), describing the two routing paths, and explaining that the tolerance can override the claim wording. This is rich behavioral context that is essential for correct invocation and interpretation.

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 longer than average, but every sentence contributes essential information: trigger phrases, routing logic, return verdicts, error semantics, and efficiency gain. It is front-loaded with the most crucial usage context and then layers details. The only minor issue is that the final note about replacing sequential calls could be trimmed, but it adds persuasive context. Overall, it is well-structured and not wasteful.

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?

There is no output schema, so the description must explain return values and error conditions. It fully covers this by listing verdict types, mentioning the actual value with citation, and explicitly distinguishing 'could_not_verify' from 'unsupported'. It also addresses the two distinct input categories (financial vs. non-financial) and the tolerance override. Given the tool's complexity, the description is complete.

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?

The input schema already provides thorough descriptions for both parameters (claim with examples, tolerance_pct with range and default), so baseline is 3. The tool description adds value by explaining the intended use of tolerance_pct ('set 1–2 for hallucination detection where any material error must be refuted') and by giving concrete claim examples that clarify the expected format. This extra guidance justifies a 4.

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 concrete natural-language triggers ('Is it true that…', 'fact check', 'verify the claim that…') and explicitly states the tool's function: natural-language claim verification against authoritative sources. It clearly differentiates this from sibling tools by emphasizing the verdict-based output and the two routing paths (SEC/XBRL for company financials, grounded pipeline for everything else).

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 explicitly tells the agent when to use the tool: 'Use whenever the agent needs to check whether something a user said is factually correct.' It also subdivides use cases (company financial claims vs. all other factual claims) and explains the fallback behavior. However, it does not explicitly name alternative sibling tools or say 'when not to use' beyond the inferred scope, so it earns a 4 rather than a 5.

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 overlapping or near-identical purposes: ask_pipeworx, ask_pipeworx_beta, and ask_pipeworx_grounded are one base query flow with different flavors, while entity_profile, compare_entities, and recent_changes all overlap on company information. The Polymarket family and the discovery/onboarding tools (discover_tools, suggest_questions, pipeworx_trending) also create boundary confusion despite good descriptions.

Naming Consistency3/5

The naming is consistently snake_case and mostly readable, but it mixes verb_noun tools (compare_entities, resolve_entity, validate_claim) with noun-phrase tools (entity_profile, polymarket_arbitrage, pipeworx_trending, datasets, metadata). The ask_pipeworx variants use a beta/grounded suffix pattern that is not applied uniformly across the other tool families.

Tool Count2/5

34 tools is well above the 25+ threshold and feels like several servers merged into one: US DOT catalog access, a generic Pipeworx data router, prediction-market tools, memory/subscription management, AI-visibility checks, and meta/discovery utilities. Many tools could be consolidated (the three ask_pipeworx variants, the five Polymarket tools, and the discovery trio).

Completeness3/5

The core data lifecycle is broadly covered: catalog search, metadata, querying, natural-language lookup, grounded verification, entity resolution, entity profiles, comparison, research, subscriptions, and memory all have working paths. However, the server is named around US DOT data but only datasets/metadata/query are DOT-specific, and the rest is an unrelated general-purpose data and prediction-market toolkit, leaving the stated domain feeling incomplete.