block_command
Prevent specific terminal commands from executing by adding them to a blacklist using this tool, ensuring controlled command execution on your system.
Instructions
Add a command to the blacklist. Once blocked, the command cannot be executed until unblocked.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}