Skip to main content
Glama
Mipiti
by Mipiti

List Assertions

list_assertions

Retrieve active assertions for a control or assumption to evaluate verification status. See origin (own/inherited), tier1/tier2 status, coherence, and coverage, enabling informed decisions on evidence sufficiency.

Instructions

List active assertions for a control or assumption.

Provide exactly one of control_id or assumption_id.

Returns a flat list of assertions. Each assertion carries an origin field: "own" for assertions submitted directly against this model's control or assumption, "inherited" for assertions contributed through model composition (composed models whose assertions apply here). Inherited assertions are included in the listing.

Each assertion also carries three INDEPENDENT verdict fields. Read them together — a passing tier check is not the same as sufficient evidence:

  • tier1_status — mechanical check: the named file, symbol, or pattern is actually there. "pass" | "fail" | "pending".

  • tier2_status — semantic check: the cited code meaningfully implements the claim. "pass" | "fail" | "pending".

  • coherence_status — advisory consistency signal across the control's evidence set. "pending" here does NOT block the control from verifying, does NOT mean a verdict is missing, and is NOT a reason to trigger a recompute.

An assertion can pass BOTH tiers while its control stays unverified, because verification is decided per CONTROL, not per assertion: a control verifies only when its assertions collectively cover every clause of the control description. Read get_sufficiency for that verdict; never infer it from the tier fields here.

Each assertion also carries covers (the objective or clause ids it was declared to prove; empty when undeclared) and, where the platform surfaces it, tier1_attested and evidence_provenance (whether the run that verified it was signed and by what class of identity).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYesID of the threat model.
control_idNoID of the control (omit if using assumption_id).
assumption_idNoID of the assumption (omit if using control_id).
server_versionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.62.2
  2. Removedv0.62.0
  3. First observedv0.57.0

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it delivers: it discloses that inherited assertions are included, that the three verdict fields are independent, that coherence_status 'pending' does NOT block verification, and that passing tiers does not mean the control verifies. It also explains the meaning of origin, covers, tier1_attested, and evidence_provenance. This is rich behavioral context beyond the schema.

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 long but every section earns its place: the one-of constraint, the origin field, the three verdict fields with their caveats, and the pointer to get_sufficiency. It is front-loaded with the core purpose and the most critical usage rule. Slightly verbose in the verdict-field section, but the warnings are important enough to justify the length.

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?

The tool has an output schema, so return values are already structured, but the description still explains the semantics of the non-obvious fields (origin, tier1_status, tier2_status, coherence_status, covers, tier1_attested, evidence_provenance). It also covers the key pitfall (per-control verification) and routes to the right sibling. For a list tool with this complexity, nothing essential is missing.

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

Parameters4/5

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

Schema coverage is 75%, and the description adds the critical constraint that exactly one of control_id or assumption_id must be provided, which the schema only hints at via 'omit if using...'. It also clarifies the semantics of the returned fields, which helps the agent interpret results. It doesn't document server_version or model_id, but those are self-explanatory and the schema covers them.

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 a specific verb and resource: 'List active assertions for a control or assumption.' It immediately distinguishes the tool's scope (active assertions, flat list) and names the two valid target types. It also differentiates from siblings like get_sufficiency and get_verification_report by explicitly saying verification is decided per control and should be read from get_sufficiency, not inferred here.

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 an explicit selection rule: 'Provide exactly one of control_id or assumption_id.' It also tells the agent when NOT to use this tool for a verdict: 'never infer it from the tier fields here' and directs to get_sufficiency. This is clear routing guidance relative to siblings.

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

Deploy Server

Other Tools