get_task_progress
Retrieve the status and progress of asynchronous tasks by providing a task ID. Designed for use within the MCP Kafka Schema Registry server to monitor task execution.
Instructions
Get the progress of an async task (alias for get_task_status).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}