materials_list
List every material in a SketchUp model along with its color, alpha, and texture status.
Instructions
List material color, alpha and texture status.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List every material in a SketchUp model along with its color, alpha, and texture status.
List material color, alpha and texture status.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.3.1Input schema / additionalPropertiesAdded value: +falsev1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, destructiveHint: false, and openWorldHint: false, covering the safety profile. The description adds no behavioral context beyond that—it does not mention scope, permissions, performance, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the verb and the key returned attributes with no wasted words. It is appropriately terse for a simple list tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description should explain the return values and scope more fully. It lists three properties (color, alpha, texture status) but omits whether it returns all materials or selected ones, and does not describe the structure of the returned list, leaving an agent without enough to predict the response shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so there are no parameter semantics to explain. Per the rubric, a zero-parameter tool receives a baseline of 4 because the schema fully covers the (empty) input contract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('material') and names the attributes returned (color, alpha, texture status). It clearly distinguishes from the setter sibling materials_set, though it does not explicitly name alternatives or scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no explicit guidance on when to use this tool versus alternatives like materials_set or entity_set_material. Usage is only implied by the tool's name and description, with no context, prerequisites, or exclusions provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.