send_control_character
Send control characters (e.g., Control-C) to the active iTerm terminal session, enabling interruption of processes or execution of specific terminal commands directly from the MCP server.
Instructions
Sends a control character to the active iTerm terminal (e.g., Control-C)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
letter | Yes | The letter corresponding to the control character (e.g., 'C' for Control-C) |
Input Schema (JSON Schema)
{
"properties": {
"letter": {
"description": "The letter corresponding to the control character (e.g., 'C' for Control-C)",
"type": "string"
}
},
"required": [
"letter"
],
"type": "object"
}