Skip to main content
Glama
Ringophilia
by Ringophilia

entity_set_material

Assign a material to a SketchUp instance or its direct faces. Use face scope to make instances unique first.

Instructions

Assign material to an instance or its direct faces. Faces scope makes instances unique first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNo
colorNo
scopeNoinstance
materialYes
model_idNo
entity_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.3.1
    • changedInput schema / required
      Previous value: -[
      -  "entity_id",
      -  "material"
      -]New value: +[
      +  "material"
      +]
  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 declare readOnlyHint=false, idempotentHint=false, destructiveHint=false, covering the safety profile. The description adds a genuine side-effect detail (faces scope makes instances unique first), but omits whether existing material is overwritten, what path/color do, and permission requirements.

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?

Two tight sentences with the primary action front-loaded and no filler. It is efficient, though the second sentence could be clearer about the mechanism rather than just stating an outcome.

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?

A mutation tool with six parameters, no output schema, and 0% schema coverage needs more than two short sentences. The interaction with existing material, the role of path/color, and return behavior are all 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%, so the description carries the full burden for six parameters. It only implicitly touches the scope enum (instance vs faces) and material, explaining nothing about path, color, model_id, or entity_id, leaving most parameters opaque.

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 (assign) and resource (material) plus the target (instance or its direct faces), so the core operation is clear. However, it does not differentiate from siblings like materials_set or entity_update, leaving the agent to guess which tool owns material assignment.

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 when-to-use or when-not-to-use guidance and no alternative named. The scope note implies behavior but gives no condition that tells the agent to pick this tool over materials_set or entity_update.

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