get_task_result
Retrieve the result of a specific task by providing the task ID and API key. Used within the Ghibli Video MCP Server to track the progress and outcome of image-to-animation conversions.
Instructions
Get task result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | API key for authentication | |
taskId | Yes | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "API key for authentication",
"type": "string"
},
"taskId": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"taskId",
"api_key"
],
"type": "object"
}