deny_command
Block a pending shell command on the Super Shell MCP Server by specifying its ID and providing a reason for denial, ensuring secure command execution across Windows, macOS, and Linux.
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"
}