Skip to main content
Glama
Ringophilia
by Ringophilia

entity_create_mesh

Create grouped mesh geometry from vertices and zero-based face indices, triangulating nonplanar faces and supporting smooth shading.

Instructions

Create arbitrary grouped geometry from vertices and zero-based face indices. Triangulate nonplanar faces. Supports smooth shading.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
nameNo
unitNomm
facesYes
originNo
parentNo
smoothNo
model_idNo
verticesYes
parent_idNo
active_pathNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed8 schema fields changedv1.3.1
    • addedInput schema / properties / active_path
      Added value: +{
      +  "items": {
      +    "exclusiveMinimum": 0,
      +    "maximum": 9007199254740991,
      +    "minimum": -9007199254740991,
      +    "type": "integer"
      +  },
      +  "maxItems": 32,
      +  "type": "array"
      +}
    • addedInput schema / properties / model_id
      Added value: +{
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / parent
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "entity_id": {
      +      "$ref": "#/properties/active_path/items"
      +    },
      +    "model_id": {
      +      "type": "string"
      +    },
      +    "path": {
      +      "items": {
      +        "$ref": "#/properties/active_path/items"
      +      },
      +      "maxItems": 32,
      +      "minItems": 1,
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedInput schema / properties / parent_id / $ref
      Added value: +"#/properties/active_path/items"
    • removedInput schema / properties / parent_id / exclusiveMinimum
      Removed value: -0
    • removedInput schema / properties / parent_id / maximum
      Removed value: -9007199254740991
    • removedInput schema / properties / parent_id / minimum
      Removed value: --9007199254740991
    • removedInput schema / properties / parent_id / type
      Removed value: -"integer"
  2. First observedv1.0.0

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false and destructiveHint=false, so the mutation/safety profile is covered. The description adds genuinely useful behavior beyond that: nonplanar faces are triangulated and smooth shading is supported, which tells the agent how geometry will be post-processed. It does not disclose parent/hierarchy side effects or coordinate-system behavior.

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?

Three short sentences, front-loaded with the core action before the triangulation and shading notes. No filler; each sentence adds information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 11 parameters, nested parent objects, a required parent_id/path hierarchy, and no output schema, three sentences are thin. Key calling decisions (units, whether parent context is required, limits on vertex/face counts) are left unaddressed.

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% across 11 parameters, so the description must carry the load. It clarifies the two required inputs and the important 'zero-based' indexing convention plus smooth shading, but leaves tag, name, unit, origin, parent, parent_id, active_path, and model_id entirely undocumented in both places.

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?

States a specific verb and resource ('Create arbitrary grouped geometry from vertices and zero-based face indices') and names the geometric inputs, which cleanly separates it from entity_create_box and entity_create_cylinder. It stops short of explicitly naming those siblings as alternatives, so it falls just below the top band.

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

Usage Guidelines2/5

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

There is no statement of when to use this versus entity_extrude, entity_create_box, entity_create_cylinder, or entity_group. The agent must infer applicability entirely from the phrase 'arbitrary grouped geometry'.

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