get_workflow_status
Retrieve the current status and complete execution details of a workflow by its ID, including tasks, inputs, outputs, and progress information.
Instructions
Get the current status and details of a specific workflow execution by its ID. Returns complete workflow execution details including tasks, input/output, and current status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workflowId | Yes | The unique workflow execution ID | |
| includeTaskDetails | No | Include detailed task information (default: true) |
Implementation Reference
- src/index.ts:471-486 (handler)Handler function that executes the get_workflow_status tool by calling the Conductor API to fetch workflow execution details.case "get_workflow_status": { const { workflowId, includeTaskDetails = true } = args as any; const url = `/workflow/${workflowId}`; const params = includeTaskDetails ? { includeTasks: true } : {}; const response = await conductorClient.get(url, { params }); return { content: [ { type: "text", text: JSON.stringify(response.data, null, 2), }, ], }; }
- src/index.ts:70-83 (schema)Input schema for the get_workflow_status tool defining required workflowId and optional includeTaskDetails.inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "The unique workflow execution ID", }, includeTaskDetails: { type: "boolean", description: "Include detailed task information (default: true)", }, }, required: ["workflowId"], },
- src/index.ts:66-84 (registration)Registration of the get_workflow_status tool in the tools array used for listing available tools.{ name: "get_workflow_status", description: "Get the current status and details of a specific workflow execution by its ID. Returns complete workflow execution details including tasks, input/output, and current status.", inputSchema: { type: "object", properties: { workflowId: { type: "string", description: "The unique workflow execution ID", }, includeTaskDetails: { type: "boolean", description: "Include detailed task information (default: true)", }, }, required: ["workflowId"], }, },