send-to-task-stdin
Send input data directly to the standard input of an active background task managed by the MCP server, enabling dynamic interaction with long-running processes.
Instructions
Sends data to the stdin of a running background task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data to send to the task's stdin | |
name | Yes | Unique name of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"description": "Data to send to the task's stdin",
"type": "string"
},
"name": {
"description": "Unique name of the task",
"type": "string"
}
},
"required": [
"name",
"data"
],
"type": "object"
}