Skip to main content
Glama

bp_disconnect_pin

Remove unwanted Blueprint pin wiring by breaking all connections on a pin or a specific link to another node. Provide the Blueprint, node, and pin to target the disconnection.

Instructions

Break one or all connections on a specific pin.

Two modes: • Break ALL connections on a pin — supply only node_id + pin_name. • Break ONE specific connection — also supply target_node_id + target_pin_name to break just that link.

This is the inverse of bp_connect_pins. Use bp_inspect_node first to confirm the exact pin names and their current connections.

Args: blueprint_name: Blueprint asset name node_id: GUID of the node that owns the pin pin_name: Exact pin name (case-sensitive) graph_name: Graph containing the node. Default 'EventGraph'. target_node_id: (optional) GUID of the other node — if supplied, only the link to this node is broken. target_pin_name: (optional) Pin on the target node — required when target_node_id is supplied.

Returns: JSON StructuredResult. outputs.node_id — GUID of the node whose pin was modified outputs.pin_name — Pin that was disconnected outputs.mode — 'break_all' or 'break_one'

KB: see knowledge_base/01_BLUEPRINT_FUNDAMENTALS.md#overview Example: bp_disconnect_pin(blueprint_name="/Game/MCP_Test/BP_Example", node_id="Example", pin_name="Exec")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
node_idYes
pin_nameYes
graph_nameNoEventGraph
blueprint_nameYes
target_node_idNo
target_pin_nameNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.8/5.0
Behavior4/5

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

With no annotations supplied, the description must carry the behavioral burden. It does: it reveals the destructive scope, the conditional target-link behavior, and the returned outputs. It stops short of detailing edge cases such as no-op on unconnected pins or whether breaking all connections is reversible, so a small transparency gap remains.

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 definition is front-loaded with a one-line purpose, then cleanly organized into modes, args, returns, KB reference, and example. Each section earns its place and there is no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a six-parameter mutation with no annotations and an output schema, this description is complete: it explains mode selection, parameter semantics, post-condition, return shape, a prerequisite inspection step, and gives a realistic example. Nothing required for correct invocation is missing.

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?

Input schema has 0% description coverage, and the description compensates fully: every one of the six parameters is explained in the Args block, including optionality, the default graph, the case-sensitive pin-name requirement, and the conditional dependency between target_node_id and target_pin_name.

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 opens with a specific verb and resource: 'Break one or all connections on a specific pin.' It clearly distinguishes the two modes and explicitly frames the tool as the inverse of bp_connect_pins, so an agent can separate it from the most similar sibling.

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

Usage Guidelines5/5

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

It states exactly when to use each mode ('supply only node_id + pin_name' vs 'also supply target_node_id + target_pin_name') and instructs agents to run bp_inspect_node first to confirm pin names and connections. This is concrete routing guidance, not just a vague context hint.

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