Skip to main content
Glama

add_sphere_trace_by_channel_node

Add a Sphere Trace By Channel node to a Blueprint to perform sphere sweeps filtered by Visibility or Camera trace channels, with configurable radius and debug drawing.

Instructions

Add a 'Sphere Trace By Channel' node - sphere sweep using trace channel.

Ch.14: SphereTraceByChannel uses Visibility or Camera channel to filter hits.

Args: blueprint_name: Blueprint name radius: Sphere radius in cm trace_channel: "Visibility" or "Camera" draw_debug: Debug visualization type node_position: Optional [X, Y] graph position

KB: see knowledge_base/26_CHAOS_PHYSICS_AND_DESTRUCTION.md#overview Example: add_sphere_trace_by_channel_node(blueprint_name="/Game/MCP_Test/BP_Example")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
radiusNo
draw_debugNoNone
node_positionNo
trace_channelNoVisibility
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?

No annotations are provided, so the description must carry behavioral disclosure. It makes the core mutation explicit ('Add a ... node') and explains the node's channel-filtering behavior, but it does not disclose side effects on the blueprint graph, prerequisites such as an existing blueprint, or failure modes. The disclosure is adequate but not deeply transparent.

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 organized with a summary line, parameter list, KB reference, and example. It is concise and front-loaded; each section earns its place. The argument list is slightly verbose but readable and useful for an agent.

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 blueprint node-adding tool, the description covers the required blueprint_name, explains key parameters, provides a KB link, and includes a direct invocation example. The output schema exists, so return-value documentation is handled elsewhere. The only notable omission is detailed draw_debug options and explicit prerequisites or error conditions.

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, and it largely does. It adds units for radius, enumerates valid trace_channel values, marks node_position as optional, and gives a usage example. The main gap is draw_debug, which is only described as 'Debug visualization type' without listing possible values.

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 action: 'Add a Sphere Trace By Channel node' and further clarifies it is a 'sphere sweep using trace channel.' This clearly distinguishes the tool from sibling trace-node tools like line, capsule, or box traces by channel. The resource and operation are both concrete and unambiguous.

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 gives useful context about the trace channel ('Visibility or Camera') and points to a knowledge-base reference, but it does not explicitly say when to use this tool versus alternatives such as line trace, multi-sphere trace, or object trace. Usage is implied through the operation name and channel semantics, but no when-not-to-use guidance or explicit alternative comparison is provided.

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