kill_job
Terminate a running background job by specifying its UUID on the MCP Background Job Server. This tool ensures precise job lifecycle management and process control.
Instructions
Kill a running background job.
Args: job_id: The UUID of the job to terminate
Returns: KillOutput indicating the result of the kill operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes | Job ID to kill |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"description": "Job ID to kill",
"title": "Job Id",
"type": "string"
}
},
"required": [
"job_id"
],
"type": "object"
}