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 |