Documentation Index
Fetch the complete documentation index at: https://docs.thena.ai/llms.txt
Use this file to discover all available pages before exploring further.
MCP tool: get_workflow_tasks
Retrieves all tasks/activities within a specific workflow execution by its instance ID. This tool provides detailed information about individual workflow steps, their execution status, and results.
Example prompt
Input parameters
| Name | Type | Required | Description |
|---|---|---|---|
| workflowInstanceId | string | Yes | The instance ID of the workflow execution |
Response fields
Below are the fields you may see in each workflow task object in the response:| Field | Type | Description |
|---|---|---|
| id | string | The identifier of the activity of a workflow instance |
| stepIdentifier | number | The step identifier of the activity as present in workflow definition |
| activity | string | The activity of the workflow instance |
| status | string | The status of the activity of a workflow instance |
| input | object | The input of the activity of a workflow instance |
| result | object | The result of the activity of a workflow instance |
| isRetry | boolean | If the activity is a retry |
| isCompensation | boolean | If the activity is a compensation |
| executionTime | number | The execution time of the activity (in seconds) |
| startedAt | string (ISO8601) | The start date of the activity |
| lastUpdatedAt | string (ISO8601) | The last updated date of the activity |