get_job_status
Check the status of a background job on the MCP server by providing its job ID. Returns running, completed, failed, or killed status for monitoring and management.
Instructions
Get the current status of a background job.
Args: job_id: The UUID of the job to check
Returns: The current status of the job (running, completed, failed, or killed)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes | Job ID to check |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"description": "Job ID to check",
"title": "Job Id",
"type": "string"
}
},
"required": [
"job_id"
],
"type": "object"
}