Skip to main content
Glama

connect_nodes_batch

Connect multiple node pairs in Houdini with a single call, specifying source and destination paths, optional input/output indices, and connector names.

Instructions

Connect multiple node pairs in a single call.

Args: connections: List of connections. Each dict has keys: source_path (str), dest_path (str), output_index (int, default 0), input_index (int, default 0), input_name (str, optional: connector name or label, wins over input_index), indirect_input (int, optional: source_path is then a subnet and this is the index of its input connector to wire from — for the first node of a chain built inside that subnet).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
connectionsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It explains the input mechanics well, but it does not state side effects, whether existing connections are replaced, failure behavior, or whether the operation is atomic, leaving important behavioral ambiguity for a mutation tool.

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 front-loads the single-sentence purpose and then provides a compact, structured parameter breakdown. It is dense but each line adds necessary information; the only cost is that the explanation is technical and requires careful reading.

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

Completeness3/5

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

For a batch mutation tool with no annotations and no output schema, the description adequately documents the complex connections parameter but omits expected returns, error/partial-failure semantics, and any limits on batch size. This leaves agents uncertain about what to expect after invocation, beyond the operation itself.

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 schema only declares an untyped array of objects. The description compensates thoroughly by documenting every expected key, its type, defaults for output_index and input_index, precedence of input_name over input_index, and the nuanced behavior of indirect_input.

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 'Connect multiple node pairs in a single call,' which names a specific verb, resource (node pairs), and batch scope. This clearly distinguishes it from sibling connect_nodes and other network tools.

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

Usage Guidelines4/5

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

The batch intent is explicit in 'multiple node pairs in a single call,' giving clear context for when this tool is appropriate. It does not explicitly name connect_nodes as the alternative for single connections, but that exclusion is strongly implied by the sibling name and the phrase 'in a single call.'

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