Skip to main content
Glama

add_blueprint_sequence_node

Adds a Sequence node to a Blueprint graph to execute multiple pins in order, enabling sequential logic flow.

Instructions

Add a Sequence macro node to a Blueprint graph.

A Sequence node executes multiple outputs in order (Then 0, Then 1, ...). Additional outputs can be added manually in the Blueprint editor.

Args: blueprint_name: Asset name of the Blueprint. graph_name: Graph to add to. Default 'EventGraph'. node_position: Optional [X, Y] canvas position.

Returns: Dict with 'node_id', 'node_name', 'node_type', and 'pins'.

KB: see knowledge_base/01_BLUEPRINT_FUNDAMENTALS.md#overview Example: add_blueprint_sequence_node(blueprint_name="/Game/MCP_Test/BP_Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
graph_nameNoEventGraph
node_positionNo
blueprint_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses that the node executes outputs in order, that outputs can be added manually, and what the return dict contains, but it does not address side effects such as whether the Blueprint is modified/saved before a compile or any prerequisites for the target graph.

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 front-loaded with the action, then uses compact labeled sections for behavior, arguments, return value, knowledge-base pointer, and a concrete example. There is no wasted prose; the explanatory lines about Sequence node behavior earn their place.

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-adding operation, the description covers the action, parameters, return shape, and an example, plus a KB reference for background. It is missing only a note about selecting among similar add_*_node tools and any post-add workflow (e.g., compiling/saving the Blueprint), which keeps it from being fully complete.

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%, and the Args section fully compensates: it defines blueprint_name as the asset name, gives the graph_name default ('EventGraph'), and specifies node_position as an optional canvas [X, Y]. Every parameter is explained beyond the raw type/default in the 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: 'Add a Sequence macro node to a Blueprint graph.' It clearly identifies the target and node type, but it never distinguishes itself from the similar sibling add_sequence_node or the broader add_blueprint_*_node family, so it stops short of a 5.

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 scope is implied through the explanation that a Sequence node 'executes multiple outputs in order,' which signals when an agent would want this node. However, there is no explicit when-to-use/when-not-to-use guidance or mention of alternatives, so the agent must infer routing from the name and explanation.

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