Skip to main content
Glama

remove_material

Remove a material from an object's slots or delete its datablock entirely. Clean up unused materials to keep Blender assets organized.

Instructions

Unassign a material from an object, or delete the material datablock.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
objectNoRemove the material from this object's slots
materialYes
delete_datablockNoDelete the material from the blend file entirely

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden, yet it only states the top-level operations. It fails to disclose that deleting a datablock can affect other objects still using that material, that the delete action is destructive/irreversible, or what happens when object is null (the unassign branch likely becomes a no-op).

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?

One short sentence with zero filler. It front-loads the core action and communicates both modes compactly.

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 3-parameter mutation with no annotations and no output schema, the description is too thin. It omits the interaction between object=null and delete_datablock=false, lacks side-effect warnings, and does not state prerequisites (e.g., that the material must exist). Schema defaults help, but the description does not tie the pieces together.

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 descriptions cover object and delete_datablock, but material—the only required parameter—has no schema description. The tool description adds some context by mapping unassign to object slots and delete to the datablock, but it does not fully compensate for the unspecified material parameter.

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 verb+resource: 'Unassign a material from an object, or delete the material datablock.' It clearly distinguishes the tool from siblings like assign_material, get_material, and list_materials by stating both operations a material can undergo.

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

Usage Guidelines3/5

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

The description implies usage—use this when you want to unassign or delete a material—but provides no explicit when/when-not guidance and does not mention alternatives such as assign_material. It also does not explain when an agent should set delete_datablock to true versus simply unassigning.

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