Skip to content

System nodes

System-level workflow tools.  These nodes are also served as MCP tools on the system MCP server. Back to the full node reference.

Condition

system_condition · read-only · idempotent

Branch the workflow based on a conditional expression.

Parameters

FieldTypeRequiredDescription
leftValuestringLeft-hand operand of the condition.
operatorenumComparison operator to apply between the operands. One of: eq, neq, gt, gte, lt, lte, contains, not_contains, is_empty, is_not_empty. Default: eq.
rightValuestringRight-hand operand of the condition.

Output

Returns a list of records — reference fields downstream as $<node>.status.

FieldTypeDescription
statusbooleanBoolean result of the condition evaluation.

Sleep

system_sleep · read-only · idempotent

Pause the workflow for a specified duration.

Parameters

FieldTypeRequiredDescription
durationenumSleep duration in milliseconds. One of: 1000, 5000, 10000, 30000, 60000. Default: 1000.

Output

Returns a list of records — reference fields downstream as $<node>.status.

FieldTypeDescription
statusbooleanWhether the sleep completed successfully.

Starter

system_starter · read-only · idempotent

Entry point that starts the workflow execution.

Output

Returns a list of records — reference fields downstream as $<node>.status.

FieldTypeDescription
statusbooleanWhether the starter executed successfully.