td_get_node_detail
Retrieve detailed information about a TouchDesigner node, including type, errors, warnings, parameters, and optional notes and hints.
Instructions
Get detailed info about a node (type, errors, warnings, parameters).
The parameters dict is capped at param_limit entries (default 50, hard ceiling 200) — full COMP serialization can blow past 80 KB. Use td_get_params with name/page filters when you need the rest.
When include_notes=True, any markdown note saved via
td_component_notes for this path is attached as a note field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute path to the node (e.g. '/project1/noise1', '/project1/geo1/sphere1') | |
| param_limit | No | Max parameters to serialize. Default 50; hard cap 200. If the node has more, the response sets parameters_truncated=true and parameters_total to the real count. Use td_get_params for the rest. | |
| include_hints | No | If True, attach a ``hints`` block via td_get_hints scoped to the inspected node's op_type and the 'inspect' response surface. Auto-injection still fires when surface-restricted hints exist for this op_type. | |
| include_notes | No | If True, look up any per-COMP note saved via td_component_notes for this path and surface it as ``note`` in the response. Default False to keep response sizes stable. | |
| response_format | No | Output format | json |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |