Skip to main content
Glama
A-to-PC

blender-lab-mcp-client

by A-to-PC

blender_material_set_color

Set the base color of a Blender material using RGB values from 0 to 1. Specify material name and color array to update its appearance.

Instructions

Set the base color of a material. Color is [r, g, b] with values 0-1.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
colorYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of disclosing behavior. It states that the operation sets a material's base color, but does not mention side effects, material-existence requirements, or whether existing color/texture values are overwritten.

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 two short sentences, front-loads the action, and adds only the essential color-format constraint. There is no filler or duplication of schema content.

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 two-parameter setter with an output schema and no nested objects, the description covers the critical inputs while remaining compact. It lacks explicit usage/prerequisite guidance, but does not need to explain return values because an output schema exists.

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

Parameters4/5

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

With schema description coverage at 0%, the description meaningfully compensates: it explains that color is an [r, g, b] array with values in the 0-1 range, which is essential for correct invocation. 'Name' is not explicitly clarified, but the tool name and schema property make its role as the material name reasonably clear.

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?

The description names a specific action and resource: 'Set the base color of a material'. This distinguishes it from sibling tools such as blender_material_create, blender_material_assign, and blender_material_set_texture, so an agent can identify it without opening the schema.

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?

No guidance is given about when to use this tool versus alternatives or what prerequisites apply (e.g., whether the material must already exist before its color can be set). The intended usage is only loosely implied by the action itself.

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