deny_command
Block pending macOS terminal commands on the Mac Shell MCP Server by providing a command ID and reason for denial. Enhances security by enabling controlled command execution.
Instructions
Deny a pending command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commandId | Yes | ID of the command to deny | |
reason | No | Reason for denial |
Input Schema (JSON Schema)
{
"properties": {
"commandId": {
"description": "ID of the command to deny",
"type": "string"
},
"reason": {
"description": "Reason for denial",
"type": "string"
}
},
"required": [
"commandId"
],
"type": "object"
}