Skip to main content
Glama

concordance

verify

Verify a claim deterministically — returns a verdict (HOLDS / BROKEN / INCOMPLETE / SYSTEM_ERROR), the worked trail, AND a sealed receipt {content_hash, cite_url} you can re-fetch and re-verify (seal_fetch). Two forms: (a) MATH — {mode, params}; (b) ANY DOMAIN — pass steps, a list of {id, domain, spec} where spec is that domain's packet (e.g. {domain:'physics', spec:{PHYS_VERIFY:{mass_kg, acceleration_m_per_s2, claimed_force_N}}}). ~60 secular domains are covered (physics, medicine, finance, chemistry, ...); find_verifier(keyword) locates the right one. The engine eliminates what is not the answer; it does not generate it. READ THE VERDICT EXACTLY: only BROKEN is a finding about the claim. SYSTEM_ERROR means OUR verifier could not run (see means and error_at) and says NOTHING about whether the claim is true — never relay it to a human as a refutation. INCOMPLETE means no verifier applied (gap_at).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoMATH form: equality | inequality | derivative | integral | limit | solve
sealNomint a re-checkable seal (default true)
stepsNoDOMAIN form: [{id, domain, spec}] — spec is the domain's packet
paramsNoMATH form: e.g. {expr_a, expr_b, variables} for equality

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries full behavioral disclosure. It reveals that verification is deterministic, that the engine 'eliminates what is not the answer; it does not generate it', and that each verdict has a precise meaning. It also explains that SYSTEM_ERROR indicates verifier failure (not claim falsehood) and that INCOMPLETE means no verifier applied, plus the sealed receipt mechanism for re-checking.

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 information-rich, front-loaded with the core purpose and every sentence contributes value. However, it is a single rambling paragraph of about 200 words with many nested parentheticals and em-dashes, which reduces readability and could be improved with bullets or short paragraphs.

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 the tool's complexity (two forms, nested objects, enum, domain coverage, and verdict semantics), the description is remarkably complete. It covers all major facets: input shapes, domain scope (~60 secular domains), verdict interpretation, and re-verification path. Without an output schema, it still describes the return values in sufficient detail.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although schema coverage is 100%, the description adds substantial meaning beyond the schema: it explains the relationship between mode/params (MATH form) and steps/spec (DOMAIN form), gives a real spec example for physics, and details the return envelope (verdict, trail, receipt). This significantly clarifies how to structure inputs correctly.

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 'Verify a claim deterministically' and explicitly lists the verdict outputs (HOLDS / BROKEN / INCOMPLETE / SYSTEM_ERROR) and the two usage forms (MATH and ANY DOMAIN). It distinguishes itself from siblings by naming find_verifier for domain lookup and seal_fetch for re-verification, making its unique role clear.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance by separating MATH (mode, params) from ANY DOMAIN (steps with domain-specific spec) and provides a concrete physics example. It also tells the agent to use find_verifier to locate the appropriate domain and includes a critical usage caveat: never relay SYSTEM_ERROR as a refutation. This clearly frames appropriate invocation.

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

C2.6/5.0
Disambiguation2/5

Several tools are near-duplicates: read_passage and resolve both fetch WEB text for a reference; word_study already includes every occurrence that word_occurrences returns; coach_next and coach_recommend both answer 'what's next.' Search/locate/cards_browse also overlap as discovery entry points, making tool selection ambiguous despite detailed descriptions.

Naming Consistency3/5

Most names follow an object_verb snake_case pattern (cards_browse, study_create, seal_fetch), but there are many bare verbs/nouns (ask, audit, resolve, verify, canon, harmony) and inconsistent singular/plural pairs (card_get vs cards_browse, group_create vs groups_list, want_open vs wants_list). No camelCase, but the convention is not uniform.

Tool Count1/5

86 tools is an extreme count for any single MCP server, far beyond the 3-15 well-scoped range; even a broad platform would be hard for an agent to navigate. Many tools belong to unrelated subdomains (coach, steward, mesh, calendar), making the surface unwieldy.

Completeness2/5

The want/offer flow has no accept/close tool, so an agent can open a want and offer a source but never see it resolved. Group and calendar coverage are one-directional (create/join only; no leave/delete/list/update), and there is no badge listing or way to update a study group. Core reading/verification/shelf flows are solid, but lifecycle gaps remain.