Skip to main content
Glama

blender_validate

Read-onlyIdempotent

Audit the model and return a scored report covering geometry, materials, UVs, transforms, pivots, and more. Run after building or before exporting to catch issues.

Instructions

Audit the model and return a scored report: scale, dimensions, normals, topology, intersections, symmetry, naming, materials, UVs, transforms, pivots, poly budget, LODs, lighting and orphan datablocks.

This is the first tool to reach for after building something, and again before exporting. Pass target to check real-world proportions against a known vehicle or asset spec.

Each check reports ok, info, warn or error; a check that itself crashes is reported as an error entry rather than aborting the audit, so you always get a full picture.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
checksNoRun only these checks: scale, dimensions, normals, topology, intersections, symmetry, naming, materials, uv, transforms, pivots, budget, lods, lighting, orphans.
ignoreNoGlob patterns to exclude, e.g. ['Sweep', 'Ground*']. Studio props otherwise dominate every size check.
targetNoReal-world spec to check against, e.g. {'length': 3.765, 'width': 1.490, 'height': 1.370}. Keys: length, width, height (metres).
objectsNoRestrict the audit to these object names.
orphansNo
max_facesNoFace budget above which the budget check warns.
tolerance_pctNoAllowed deviation for the dimension check, in percent.
weld_distanceNoWeld distance used when reporting duplicate vertices.
response_formatNo'markdown' for readable output, 'json' for raw structured data.markdown
max_pivot_offsetNoDistance from geometry centre above which a pivot is reported.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false. The description adds valuable behavioral detail beyond that: it explains the per-check status levels and, importantly, that a crashing check is reported as an 'error' entry rather than aborting the audit, which is non-obvious and useful for reliable invocation.

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 tightly structured: purpose, usage timing, and behavior are each covered in distinct, efficient sentences. The long first sentence is dense but every item in it is substantive, and the other two sentences add necessary context without fluff.

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 complex 10-parameter tool with no output schema, the description covers the scope of checks, the output format (scored report with statuses), and error resilience. It doesn't specify the precise structure of the scored report, but the status-level explanation plus the `response_format` parameter makes the return value sufficiently predictable.

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 90%, so the input schema already documents most parameters. The description adds a meaningful note about `target` for real-world proportion checking, but it does not clarify the other parameters beyond schema content, which is acceptable given the high coverage.

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?

The description states a specific verb ('Audit') and resource ('the model'), and enumerates the exact categories checked, making the tool's purpose unambiguous. It does not explicitly name or differentiate from similar siblings like blender_find_problems or blender_analyze_mesh, but the comprehensive 'audit and scored report' framing clearly sets it apart.

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 gives explicit timing guidance: 'the first tool to reach for after building something, and again before exporting.' It does not provide explicit when-not-to-use guidance or name alternatives, but the context is clear enough for an agent to select this over sibling tools.

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