Skip to main content
Glama
Nuraveda-Labs

@qed-proof/mcp

Get a claim's verdict

get_verdict
Read-onlyIdempotent

Get a claim's verification status and verdict meaning, along with receipt ID. Only returns results for claims submitted in your workspace.

Instructions

Returns a claim's state ("queued" or "decided"), its verdict when decided, and the receipt_id. Verdicts: verified, late, mismatch, failed, unverifiable; the response includes what the verdict means. Only claims in the API key's own workspace are visible.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claim_idYesThe claim_id returned by submit_claim.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds useful behavioral context beyond that: the queued/decided state distinction, inclusion of receipt_id, verdict meanings, and the workspace scoping restriction.

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?

Two tightly written sentences convey the return fields, possible states, verdict meanings, and scope restriction without wasted words. Key information is front-loaded.

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?

For a simple read-only lookup with one parameter and no output schema, the description sufficiently covers what is returned, what the verdicts mean, and the workspace restriction. Nothing critical is missing for an agent to call and interpret the result.

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% and the single claim_id parameter is already described as the ID returned by submit_claim. The description adds no meaningful parameter details beyond the schema, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the operation as retrieving a claim's state, verdict, and receipt_id, and enumerates the possible verdict values. It is specific about the resource and scope, though it does not explicitly contrast itself with sibling tools like get_receipt or verify_receipt.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is for checking a claim's status or verdict but gives no explicit guidance on when to prefer it over alternatives such as get_receipt or list_claims. The workspace visibility constraint is a limitation, not usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.