write_to_terminal
Executes commands or writes text directly to the active iTerm terminal session, enabling automation of tasks through terminal inputs.
Instructions
Writes text to the active iTerm terminal - often used to run a command in the terminal
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | The command to run or text to write to the terminal |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "The command to run or text to write to the terminal",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}