Skip to main content
Glama

sim_verify

Destructive

Verify declared properties of a stored model: deadlock-free, bounded, mutual-exclusion, invariant expressions, reachable/unreachable targets. Verdicts are proved/refuted/unknown — unknown is never a pass — and each carries a method: structural means it holds for ANY initial marking (linear algebra on the incidence matrix, the strongest claim available), exhaustive means this marking's full state space, partial means truncated (only refutations sound). Caveats name anything the analysis net could not express.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesmodel id
propertiesNoJSON array of properties, e.g. [{"kind":"deadlock-free"},{"kind":"mutual-exclusion","places":["win_x","win_o"]},{"kind":"invariant","expr":"a + 2*b == 10"}]. Default: bounded + deadlock-free.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

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

The description goes beyond the annotations by explaining the verdict types (proved/refuted/unknown), the soundness semantics of each method (structural/exhaustive/partial), and the caveats. It clarifies that 'unknown is never a pass' and that partial results are only sound for refutations. The annotations declare destructiveHint=true, and the description does not contradict this; it adds meaningful behavioral context about the verification guarantees.

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 but well-structured: it front-loads the core purpose, then explains verdict semantics, then method soundness, then caveats. Every sentence adds information. It could be slightly more concise, but the density is justified given the complexity of the verification semantics.

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?

For a verification tool with no output schema, the description does a good job explaining what the agent should expect: verdicts, methods, and caveats. It doesn't describe the exact response format, but the verdict/method/caveat structure is implied. The annotations cover the safety profile (destructiveHint=true), and the description covers the semantic guarantees. Minor gap: no explicit statement about what happens on invalid input or how to interpret the 'id' parameter beyond 'model id'.

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%, so the schema already documents both parameters. The description adds context about what 'properties' means (the property kinds) and the default (bounded + deadlock-free), which is useful. However, it doesn't add syntax details beyond the schema's example, so the baseline 3 is appropriate.

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 states a specific verb ('verify') and resource ('declared properties of a stored model'), and enumerates the property kinds it handles. It distinguishes itself from siblings like sim_invariants and sim_diagnose by naming the exact property classes and verdict semantics.

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 clearly explains when to use the tool: to verify declared properties of a model. It does not explicitly name alternative tools for other verification tasks, but it provides enough context about the property kinds and verdict semantics that an agent can infer when this tool is appropriate. The caveats section also signals when results may be incomplete.

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.

Resources