interact_with_job
Send input to a job's stdin via its ID and retrieve immediate stdout/stderr output. Designed for asynchronous command execution and interaction within the MCP Background Job Server.
Instructions
Send input to a job's stdin and return any immediate output.
Args: job_id: The UUID of the job to interact with input: Text to send to the job's stdin
Returns: ProcessOutput containing any immediate stdout/stderr output after sending input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Input to send to the job's stdin | |
job_id | Yes | Job ID to interact with |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Input to send to the job's stdin",
"title": "Input",
"type": "string"
},
"job_id": {
"description": "Job ID to interact with",
"title": "Job Id",
"type": "string"
}
},
"required": [
"job_id",
"input"
],
"type": "object"
}