zapcap_mcp_monitor_task
Track and monitor the progress of video processing tasks using task and video IDs with the MCP server tool designed for real-time updates.
Instructions
Monitor task progress
Input Schema
Name | Required | Description | Default |
---|---|---|---|
request | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"MonitorTask": {
"properties": {
"task_id": {
"description": "Task ID",
"title": "Task Id",
"type": "string"
},
"video_id": {
"description": "Video ID",
"title": "Video Id",
"type": "string"
}
},
"required": [
"video_id",
"task_id"
],
"title": "MonitorTask",
"type": "object"
}
},
"properties": {
"request": {
"$ref": "#/$defs/MonitorTask"
}
},
"required": [
"request"
],
"title": "zapcap_mcp_monitor_taskArguments",
"type": "object"
}