Skip to main content
Glama

material_create_instance_from_master

Create a material instance constant from a master material: define instance name, parent material path, and folder path to produce a reusable variation. Handles overwrite and save options.

Instructions

Create a Material Instance Constant from a master Material.

Args: instance_name: Material instance asset name, e.g. "MI_Prop_Red" parent_material_path: Parent material or material instance path folder_path: Content Browser folder for the instance overwrite: Delete/recreate an existing asset at the same path save: Save the asset package immediately

KB: see knowledge_base/08_MATERIALS_AND_RENDERING.md#overview Example: material_create_instance_from_master(instance_name="ExampleName", parent_material_path="/Game/MCP_Test/M_Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
saveNo
overwriteNo
folder_pathNo/Game/Materials/Instances
instance_nameYes
parent_material_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It discloses the destructive overwrite behavior ('Delete/recreate an existing asset at the same path') and the save side effect ('Save the asset package immediately'). This is meaningful transparency beyond the bare schema, though it does not mention failure behavior or validation rules.

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 compact and well-structured: a one-sentence purpose, a terse Args list, a KB pointer, and a concrete example. Every part adds value, and the example clarifies the expected path format.

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

Completeness5/5

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

Given an output schema exists and the description covers all parameters plus the important destructive and save side effects, nothing essential is missing for an agent to invoke this tool correctly. The KB link provides an additional path to deeper material context if needed.

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

Parameters5/5

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

Schema description coverage is 0%, so the description fully compensates. The Args block gives meaningful semantics for all five parameters: naming example, parent material or material instance path, Content Browser folder, overwrite behavior, and save behavior. This is complete and goes well beyond the raw schema.

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?

The description opens with a specific verb and resource: 'Create a Material Instance Constant from a master Material.' This clearly identifies the asset type being created and the input resource. However, it does not explicitly contrast with nearby sibling tools like create_dynamic_material_instance or material_create_master, so it lacks explicit sibling differentiation.

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 the usage context through 'from a master Material' and by naming the instance asset parameters, but it never states when to prefer this tool over alternatives. No exclusions or alternative routing guidance is provided, only a KB reference. This is reasonable but leaves the when-to-use decision mostly to inference.

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