get_job_status
Check the status of a job using its ID to monitor progress and completion.
Instructions
Get the status of a job.
Args:
job_id: The ID of the job to check
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Implementation Reference
- server.py:67-76 (handler)The handler function decorated with @mcp.tool(), implementing the get_job_status tool by querying the job status from the TryKitt API.@mcp.tool() async def get_job_status(job_id: str) -> Dict: """ Get the status of a job. Args: job_id: The ID of the job to check """ response = await http_client.get(f"/job?id={job_id}") return response.json()