Skip to main content
Glama

bp_find_unreachable_nodes

Locate blueprint graph nodes that lack an incoming execution path from an event node. Identify unreachable nodes and get their GUIDs, titles, and reasons to clean up broken logic.

Instructions

Find nodes in a graph that have no incoming exec path from an event node.

A node is unreachable if it has exec pins but no incoming exec connection and is not itself an event/entry node.

Args: blueprint_path: Full asset path or plain name graph_name: Graph to inspect

Returns: StructuredResult with outputs: unreachable_nodes[] — {node_guid, node_title, reason} total_unreachable — int

KB: see knowledge_base/32_AGENT_PLAYABLE_SLICE_RECIPE.md#overview Example: bp_find_unreachable_nodes(blueprint_path="/Game/MCP_Test/BP_Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
graph_nameNoEventGraph
blueprint_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It transparently explains the unreachability rule and the returned outputs, and the verb 'Find' implies a read-only diagnostic operation. However, it never explicitly states that the tool does not modify the blueprint or what happens when no unreachable nodes are found.

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-organized and front-loaded with the core purpose, followed by a compact definition, parameter list, return format, KB reference, and example. No sentence is wasted.

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?

The description covers the algorithm, parameters, output structure, and provides an example and KB pointer. It is nearly complete for a diagnostic tool, though it could explicitly state that the operation is read-only and how it differs from related validation tools.

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 must compensate. It does explain blueprint_path as 'Full asset path or plain name' and graph_name as 'Graph to inspect'. It does not mention that graph_name defaults to EventGraph, but the schema provides that default.

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 and resource: find nodes in a graph with no incoming exec path from an event node. It also gives a precise definition of 'unreachable', which distinguishes this tool from siblings like bp_find_orphaned_nodes and bp_find_disconnected_pins.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives such as bp_find_orphaned_nodes or bp_find_disconnected_pins. The intended use is implied by the definition, but there are no when-to-use or when-not-to-use instructions.

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