Set parameter expression / bind / constant
set_parameter_expressionSet node parameters to expressions, bind expressions, or constants. Supports batch assignments with fail-forward behavior for partial results.
Instructions
Set one or more parameters on a node to an expression, bind expression, or constant value without needing the raw-Python escape hatch. Supports three modes: 'expression' (par.expr = ...), 'bind' (par.bindExpr = ...), and 'constant' (par.val = ...). Multiple assignments are applied fail-forward — per-item failures accumulate as warnings so a partial batch still returns useful results. Use this instead of execute_python_script when TDMCP_RAW_PYTHON is off.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full path of the node whose parameters to set. | |
| assignments | Yes | One or more parameter assignments. |