check_image_status
Track the progress and status of an image generation task by providing the task ID returned from generate_image, ensuring efficient monitoring within MCP Kling's AI video generation system.
Instructions
Check the status of an image generation task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | The task ID returned from generate_image |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "The task ID returned from generate_image",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}