Skip to main content
Glama

link_parameters

Create a live parameter link by writing an HScript expression into the destination parameter, so it automatically reads the source value and survives node moves or instancing.

Instructions

Create a channel reference from one parameter to another.

The destination gets an HScript expression that reads the source as its own type: chs() for a String parameter, ch() for numbers, toggles and menus. The path is relative to the destination node (chs("../CTRL/mat")), so the link survives moving the pair, collapsing into a subnet or instancing an HDA. The reply carries the expression, the function used and the destination's evaluated value.

Args: source_path: Source node path. source_parm: Source parameter name. dest_path: Destination node path. dest_parm: Destination parameter name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dest_parmYes
dest_pathYes
source_parmYes
source_pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explains that the destination receives an HScript expression using chs() or ch(), that the path is relative to the destination node, that the link survives restructuring, and that the reply contains the expression, function, and evaluated value. It does not mention overwriting existing destination values or failure modes, but the main behavioral contract is well covered.

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 compact and well-structured: a purpose sentence, a mechanism/behavior explanation, a return-value sentence, and a small Args list. Every sentence adds value, and there is no filler or redundant restatement of the tool name.

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?

Given that there is no output schema, it is good that the description explicitly mentions what the reply contains. The mutation-type side effect is also described concretely. However, it does not specify error behavior, node/parameter existence prerequisites, or the exact response shape, so the description is solid but not fully exhaustive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/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 for missing parameter documentation. The Args list maps all four parameters to their roles ('Source node path', 'Source parameter name', etc.), which is useful but mostly restates the parameter names. It does not provide syntax details such as expected path formats, absolute vs relative paths, or parameter naming conventions, leaving a meaningful gap.

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 first sentence clearly states a specific verb and resource: 'Create a channel reference from one parameter to another.' The following sentences clarify what that means in Houdini terms (HScript expression, type-dependent function, relative paths), making the purpose unmistakable. It does not explicitly contrast with siblings like set_expression or get_parm_references, but the core action is unambiguous.

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 description gives clear context for when to use the tool: when you want to link two parameters via a channel reference. It also explains behavioral consequences such as relative path resolution and surviving subnets/HDAs, which helps an agent decide if this tool is appropriate. However, it does not explicitly mention when not to use it or when to prefer an alternative tool.

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