Skip to main content
Glama

add_make_set_node

Adds a Make Set node to a Blueprint, creating a set from specified element pins while preventing duplicates. Use to build a set data structure from individual variables.

Instructions

Add a Make Set node to create a Set from individual variables.

From Ch. 13: Similar to Make Array but creates a Set (no duplicates).

Args: blueprint_name: Blueprint to add the node to element_type: Element type for the Set num_pins: Number of input element pins node_position: [X, Y] graph position

KB: see knowledge_base/07_DATA_STRUCTURES.md#overview Example: add_make_set_node(blueprint_name="/Game/MCP_Test/BP_Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
num_pinsNo
element_typeNoString
node_positionNo
blueprint_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the transparency burden. It discloses the core behavior (adds a node, creates a Set, no duplicates) and provides an example, but it does not mention side effects such as whether the blueprint is modified in memory, whether saving/compiling is required, or what happens if the blueprint_name is invalid.

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?

The description is compact and front-loaded with the main purpose. The Args section and example are useful given the schema lacks property descriptions, and the KB reference adds context without bloating the text.

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 node-addition tool with an output schema, the description is largely complete: it names the target, explains the node semantics, documents all arguments, and gives an example. It could improve by stating the prerequisite that the referenced blueprint must exist and by clarifying the default placement behavior when node_position is omitted.

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?

Schema description coverage is 0%, so the description compensates by giving a plain-language explanation for every parameter: blueprint target, element type, pin count, and node position format. The explanations are useful, though element_type could list acceptable values and node_position could specify bounds or units.

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 states a specific operation ('Add a Make Set node') and its purpose ('create a Set from individual variables'), and differentiates it from Make Array by emphasizing sets have no duplicates. This clearly identifies the tool among many add_*_node siblings.

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

Usage Guidelines4/5

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

The description gives clear context: it creates a Set rather than an Array, and explicitly notes the similarity and difference from Make Array. It does not provide an explicit 'use X instead when...' exclusion, but the no-duplicates distinction is enough to guide selection in most cases.

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