Skip to main content
Glama

check_model_integrity

Run a quick model integrity check to detect common silent failures in mesh, constraints, contacts, and volumes. Use after building a model and before submitting a job to catch issues early.

Instructions

Quick model integrity check: mesh, constraints, contacts, volumes.

A fast subset of check_silent_failures focused on the most common silent failures. Runs the same checks but returns a compact format.

Use this after building a model and before submitting a job.

Args: model_name: Name of the model to check (default: first available model).

Returns: Compact text report of findings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeoutNo
model_nameNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/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 reveal the tool runs the same checks as check_silent_failures and returns a compact text report. However, it does not explicitly state that the operation is read-only/non-destructive, nor describe error behavior or edge cases, leaving some behavioral ambiguity.

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?

The description is concise, front-loaded with the core purpose, and each sentence contributes: what it checks, how it relates to the sibling, when to use it, args, and return. No filler or redundancy.

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 simple tool with two optional parameters, the description provides enough context to call it: usage timing, scope, and return format. The only notable omission is timeout parameter semantics, which prevents a perfect score.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must document both parameters. It documents model_name, but says nothing about timeout, its behavior, or acceptable values. Timeout is only partially self-explanatory, so this is a clear gap.

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?

Clearly states it performs a model integrity check on mesh, constraints, contacts, and volumes, and explicitly differentiates itself from check_silent_failures by being a fast subset. The scope is specific and an agent can immediately tell what it does.

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?

Explicitly recommends using it after building a model and before submitting a job, giving concrete workflow context. It also names the sibling check_silent_failures and positions itself as a faster, compact alternative, though it does not explicitly state when to choose the full version.

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