report_step_completion
Track step completion results, submit execution data, and receive intelligent guidance for the next steps in the Anubis MCP Server's AI-driven workflow orchestration.
Instructions
Report step completion results and get next step guidance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
executionData | No | Results from local execution | |
executionId | No | Execution ID (optional if taskId provided) | |
executionTime | No | Execution time in ms | |
result | Yes | Execution result | |
stepId | Yes | Completed step ID | |
taskId | No | Task ID (optional if executionId provided) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"executionData": {
"description": "Results from local execution"
},
"executionId": {
"description": "Execution ID (optional if taskId provided)",
"type": "string"
},
"executionTime": {
"description": "Execution time in ms",
"type": "number"
},
"result": {
"description": "Execution result",
"enum": [
"success",
"failure"
],
"type": "string"
},
"stepId": {
"description": "Completed step ID",
"type": "string"
},
"taskId": {
"description": "Task ID (optional if executionId provided)",
"type": "number"
}
},
"required": [
"stepId",
"result"
],
"type": "object"
}