@centrali-io/centrali-mcp 4.2.11 → 4.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/describe.js +2 -0
- package/package.json +1 -1
- package/src/tools/describe.ts +2 -0
package/dist/tools/describe.js
CHANGED
|
@@ -752,6 +752,8 @@ function registerDescribeTools(server) {
|
|
|
752
752
|
"Use get_orchestration_run with includeSteps=true to see step-by-step execution details",
|
|
753
753
|
"Orchestrations must be 'active' to be triggered — draft orchestrations cannot run",
|
|
754
754
|
"Use correlationId when triggering to trace runs across systems",
|
|
755
|
+
"Terminal steps: a compute step with no onSuccess and no subsequent step in the array will complete the run. No special 'end' step type is needed.",
|
|
756
|
+
"Decision step conditions use 'path' (not 'field') and 'op' (not 'operator'). Paths use dot notation: 'input.fieldName' or 'steps.stepId.output.fieldName'.",
|
|
755
757
|
],
|
|
756
758
|
}, null, 2),
|
|
757
759
|
},
|
package/package.json
CHANGED
package/src/tools/describe.ts
CHANGED
|
@@ -845,6 +845,8 @@ export function registerDescribeTools(server: McpServer) {
|
|
|
845
845
|
"Use get_orchestration_run with includeSteps=true to see step-by-step execution details",
|
|
846
846
|
"Orchestrations must be 'active' to be triggered — draft orchestrations cannot run",
|
|
847
847
|
"Use correlationId when triggering to trace runs across systems",
|
|
848
|
+
"Terminal steps: a compute step with no onSuccess and no subsequent step in the array will complete the run. No special 'end' step type is needed.",
|
|
849
|
+
"Decision step conditions use 'path' (not 'field') and 'op' (not 'operator'). Paths use dot notation: 'input.fieldName' or 'steps.stepId.output.fieldName'.",
|
|
848
850
|
],
|
|
849
851
|
},
|
|
850
852
|
null,
|