Skip to main content
Glama

multi_source_validator

Verify a factual claim against multiple live web sources (Brave). Returns a JSON object with a verdict (supported / contradicted / unverified), a 0-1 consensus score, short reasoning, and the actual cited sources (ref, title, url). Judges only from retrieved sources — never fabricates. 'contradicted' is used only when sources actively assert the opposite; absence of evidence yields 'unverified'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claimYesThe factual claim to verify against multiple web sources.
countNoHow many web sources to consult (default 5, max 10).

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries full responsibility. It explicitly states 'Judges only from retrieved sources — never fabricates' and defines the semantics of 'contradicted' vs 'unverified', which are crucial behavioral traits.

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 and front-loaded: purpose in the first sentence, output structure in the second, and semantic clarifications in the remainder. Every sentence adds value without padding.

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 no output schema, the description thoroughly explains the return object (verdict, score, reasoning, sources) and defines the judgment criteria. It also covers the absence-of-evidence case, making it complete for an agent to understand expected behavior.

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 coverage is 100%, so the description doesn't need to add parameter details. It does not explain the 'count' parameter's range, but the schema already documents it (albeit with an internal inconsistency between max=255 and description max=10).

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 uses a specific verb and resource: 'Verify a factual claim against multiple live web sources (Brave).' It clearly distinguishes itself from siblings like ping or structured_brief_synthesizer by focusing on verification with a defined output structure.

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 implies when to use the tool: when a factual claim needs to be checked against live sources. It does not explicitly name alternatives or conditions for not using it, but the purpose is unambiguous.

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.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: verification, synthesis, redaction, and liveness. There is no overlap in their core functions, so an agent can easily select the right tool based on the task.

Naming Consistency4/5

All tool names are in lowercase snake_case and are descriptive, but they mix noun phrases (multi_source_validator, privacy_shield_redact, structured_brief_synthesizer) with a simple verb (ping). This is a minor deviation from a fully uniform pattern.

Tool Count5/5

Four tools is well-scoped for a research workflow, covering verification, synthesis, privacy protection, and a liveness check. Each tool earns its place without redundancy.

Completeness4/5

The set covers the core research tasks of validating claims, synthesizing information, and redacting PII. A dedicated search or fetch tool is missing, but the existing tools can work around this by web sources internally, so the gap is minor.

Resources