Skip to main content
Glama

add_append_string_node

Adds an Append node to a Blueprint graph to concatenate two strings, such as building a 'Levelled up to ' + level display message.

Instructions

Add an Append (string concatenation) node.

From Ch. 18 (Actor Component test): Combines two strings into one. Used to build "Levelled up to " + CurrentLevel display string.

Args: blueprint_name: Blueprint to add the node to string_a: First string (A pin default value) string_b: Second string (B pin default value) node_position: [X, Y] graph position

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
string_aNo
string_bNo
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 provided, the description carries the full behavioral burden. It clearly states the action (adds a node), the node's purpose (string concatenation), and how the parameters feed into it. However, it does not disclose potential side effects, prerequisites like whether the blueprint must already exist, or whether the operation compiles or connects the node.

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 well-structured and front-loaded with the core action. It includes a brief use case, a concise argument list, a knowledge base pointer, and a realistic example. Each section earns its place without unnecessary verbosity.

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, the description covers the essential context: purpose, parameters, example, and KB reference. The output schema exists, so not describing return values is acceptable. It lacks some guidance on when not to use it and does not mention required-versus-optional parameters, but the schema covers required fields.

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%, but the description compensates fully by explaining each parameter: blueprint_name is the target blueprint, string_a and string_b are the A/B pin defaults, and node_position is an [X, Y] graph position. This is significantly more meaningful than the raw schema property names and defaults.

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 clear verb and resource: 'Add an Append (string concatenation) node,' and further explains it 'Combines two strings into one.' This is unambiguous and specific. However, it does not explicitly differentiate itself from sibling tools like add_format_text_node or add_print_string_node, though the operation is distinct enough by name.

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 provides a concrete use case: 'Used to build "Levelled up to " + CurrentLevel display string,' which implies when this tool is appropriate. It does not explicitly state when to use this tool versus alternatives, nor does it give exclusions or mention when another node type would be preferable.

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