add_to_whitelist
Whitelist shell commands on the Super Shell MCP Server by specifying the command, security level, and description to enable secure execution across Windows, macOS, and Linux.
Instructions
Add a command to the whitelist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The command to whitelist | |
description | No | Description of the command | |
securityLevel | Yes | Security level for the command |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "The command to whitelist",
"type": "string"
},
"description": {
"description": "Description of the command",
"type": "string"
},
"securityLevel": {
"description": "Security level for the command",
"enum": [
"safe",
"requires_approval",
"forbidden"
],
"type": "string"
}
},
"required": [
"command",
"securityLevel"
],
"type": "object"
}