Skip to main content
Glama

unlink_nodes

Disconnect a socket from a node in a material by specifying the material, target node, and socket.

Instructions

断开某输入插槽上的连线。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
to_nodeYes
materialYes
to_socketYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

There are no annotations, so the description must carry the full behavioral burden. It reveals the mutation (removing a connection) but gives no context about side effects, reversibility, or whether the node/socket become invalid.

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 a single concise sentence with no filler words, and it front-loads the key operation. It is efficient, though slightly under-specified.

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

Completeness2/5

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

For a mutation tool with no annotations, no output schema, and three undocumented required parameters, this description is too thin. An agent would struggle to know exactly which material, node, and socket to provide.

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

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain material, to_node, or to_socket. Only 'input socket' loosely maps to to_socket; the other required parameters receive no semantic guidance.

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 description states a specific verb ('disconnect') and a specific resource ('connection on an input socket'), making the core operation clear. It does not explicitly contrast itself with the sibling unlink_geometry_nodes, but the name and phrasing are enough to identify the intended target.

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 guidance is given about when to use this tool versus alternatives such as link_nodes or unlink_geometry_nodes. The description only states what the tool does, not when it should be selected.

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