get_job_status
Retrieve the current status of a specific job by providing its unique job ID. Use this tool within the trykittai-mcp-server to track progress and manage workflows effectively.
Instructions
Get the status of a job.
Args:
job_id: The ID of the job to check
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"title": "Job Id",
"type": "string"
}
},
"required": [
"job_id"
],
"title": "get_job_statusArguments",
"type": "object"
}