ssh_send_input
Send commands or text input to an active SSH shell session, with optional human-like typing simulation for interactive applications.
Instructions
Send input to an interactive shell session with optional typing simulation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Input to send to the shell | |
sessionId | Yes | Interactive session ID | |
simulateTyping | No | Simulate human typing with delays |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Input to send to the shell",
"type": "string"
},
"sessionId": {
"description": "Interactive session ID",
"type": "string"
},
"simulateTyping": {
"default": false,
"description": "Simulate human typing with delays",
"type": "boolean"
}
},
"required": [
"sessionId",
"input"
],
"type": "object"
}