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
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Implementation Reference
- server.py:67-76 (handler)The main handler function for the 'get_job_status' tool. It is decorated with @mcp.tool() for registration and makes an HTTP GET request to retrieve the status of the specified job from the TryKitt.ai 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()