remote_macos_send_keys
Send keyboard input remotely to a macOS machine using key combinations, special keys, or text. Simplifies control of remote systems via MCP server integration.
Instructions
Send keyboard input to a remote MacOs machine. Uses environment variables for connection details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key_combination | No | Key combination to send (e.g., 'ctrl+c', 'cmd+q', 'ctrl+alt+delete', etc.) | |
special_key | No | Special key to send (e.g., 'enter', 'backspace', 'tab', 'escape', etc.) | |
text | No | Text to send as keystrokes |
Input Schema (JSON Schema)
{
"properties": {
"key_combination": {
"description": "Key combination to send (e.g., 'ctrl+c', 'cmd+q', 'ctrl+alt+delete', etc.)",
"type": "string"
},
"special_key": {
"description": "Special key to send (e.g., 'enter', 'backspace', 'tab', 'escape', etc.)",
"type": "string"
},
"text": {
"description": "Text to send as keystrokes",
"type": "string"
}
},
"required": [],
"type": "object"
}