run_command
Execute shell commands safely via subprocess, returning output with built-in error handling and timeout settings for secure operations in LLM applications.
Instructions
Execute a shell command using subprocess and return the output
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| command | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "command": {
      "title": "Command",
      "type": "string"
    }
  },
  "required": [
    "command"
  ],
  "type": "object"
}