Skip to main content
Glama
stillmarcus24

stillos-notary-mcp

claim_verdict

Submit a claim and receive a signed verdict resolved against external ground truth, returning CONFIRMED, REFUTED, or ERROR without forced guesses.

Instructions

Submits a claim and returns a signed verdict: settled against real external ground truth (GitHub PR, on-chain tx, HTTP status, JSON field, Kalshi market, or multi-exchange price consensus), Ed25519-signed, hash-chained. Free tier — no account, no card. Returns CONFIRMED, REFUTED, or ERROR — never a forced guess.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentYeswho is asking (shown on the public reputation ledger)
claimYesthe claim in plain language, e.g. "PR #42 on owner/repo is merged"
resolverYeswhich external source resolves this claim

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses Ed25519 signing, hash-chaining, three fixed outcomes, no forced guess, and the free tier. However, it doesn't mention the public reputation-ledger side effect (only in schema) and lists 'multi-exchange price consensus' as a ground-truth source that is unsupported by the resolver enum, creating a mild inconsistency.

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 front-loaded sentences with no waste. The main action and return value lead, and the signing/hash-chaining and free-tier notes are useful context that earns their place.

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?

Despite lacking an output schema, it clearly states the possible return values and key behavioral guarantees. It could add handling for invalid resolvers or the public-ledger effect, but for a 3-parameter tool the description is substantially complete.

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 baseline is 3. The description adds no parameter-level insight beyond the schema; the claim example already lives in the schema, and the resolver list mismatch introduces confusion rather than clarity.

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?

States a specific action (submits a claim) and a specific return (signed verdict), and enumerates external ground-truth sources. It does not explicitly differentiate from sibling verify_receipt, but the scope is clearly claim veridication against real-world evidence.

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?

No guidance on when to use this tool vs siblings like verify_receipt, file_dispute, or screen_entity. It implies claims need external ground truth but provides no exclusions, prerequisites, or alternative routing.

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