get_task_result
Retrieve the final output of a completed AI task by providing its task ID. Designed for managing asynchronous workflows on the MCP Task server.
Instructions
Get the final result of a completed task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | The task ID returned from run_task |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "The task ID returned from run_task",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}