Skip to main content
Glama

check_claim

NL-gate (kernen): udtræk SPO-triple(r) fra en naturlig-sprogs-PÅSTAND (Sonnet via LiteLLM, R1) og tjek hver mod det grundede SPO-fakta-lager (i PUBLIC_DEMO-mode: det OFFENTLIGE demo-fakta-lager, IKKE dine data — se scope_note). Returnerer en auditerbar consistency-receipt: {claim, extracted_triples[], conflicts[], verdict, checked_against_n_facts, scope_note}. verdict ∈ {consistent, contradicts, unverifiable} — ALDRIG true/false. ADVISORY: flager konsistens, blokerer/beslutter ALDRIG for dig (never-write-for-you). Persisterer ALDRIG selve påstanden (check ≠ gem — kun add_fact skriver til lageret, og add_fact er FRAVÆRENDE i PUBLIC_DEMO-mode).

PUBLIC_DEMO-mode: rate-limitet (default 5/min + 30/time, ÉN global demo-bucket, §2/§8 BLOCKER 3). Over grænsen returneres {error:"rate_limited", retry_after_s, scope_note} — ALDRIG et consistent-formet svar. Bogholderi-fejl i rate-limiteren -> deny (fail-safe).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claimYes
focusNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations to rely on, the description fully discloses behavioral traits: verdict values (consistent/contradicts/unverifiable), non-persistence, rate limits with exact thresholds and error format, fail-safe deny behavior, and the distinction between public demo data and user data. This is comprehensive beyond a basic 'check' operation.

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 dense and relatively long, but it is front-loaded with the core purpose and structured into two paragraphs. Each sentence adds meaningful details (verdict domain, rate limits, fail-safe), yet it could be trimmed without losing essential info; still, the length is justified by complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/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 presence of an output schema, the description covers most contextual aspects: return receipt fields, verdict semantics, rate-limit error behavior, scope, and non-persistence. The only notable omission is the `focus` parameter's purpose, which prevents a perfect score.

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 0%, and the description effectively explains the main `claim` parameter (natural language claim, SPO extraction) but provides no information about the `focus` parameter. Since only two parameters exist, leaving one undocumented is a clear gap, but the claim parameter is well-contextualized.

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 core function: extract SPO triples from a natural language claim and check them against a grounded fact store. It distinguishes from siblings by emphasizing the NL-gate/claim-based approach and by outlining a specific, auditable receipt 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 gives clear context on when to use the tool: it is advisory, never persists, and is meant for consistency checking rather than writes (check ≠ save). It does not explicitly compare to sibling tools like check_triple or list_facts, but mentions that add_fact is absent in PUBLIC_DEMO-mode, implying it is not for writing.

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

Each tool has a distinct purpose: check_claim handles natural language claims, check_triple handles raw SPO triples, and list_facts provides transparency for entities. There is no overlap between the tools, and their roles are clearly separated.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with lowercase and underscores: check_claim, check_triple, list_facts. The naming is uniform and predictable.

Tool Count5/5

With only three tools, the set is lean but well-scoped for a consistency-checking service. Each tool earns its place, and the count is within the typical 3-15 range for a focused server.

Completeness5/5

The domain is consistency checking, and the set covers both high-level natural language checking and low-level triple checking, plus a listing function for audit. There are no obvious missing operations for this purpose, as add_fact is intentionally unavailable in the demo mode.

Resources