# execute_shell 在服务器上执行 shell 命令。 ## Risk Level High ## Parameters ```json { "type": "object", "properties": { "command": { "type": "string", "description": "要执行的 shell 命令" }, "timeout": { "type": "integer", "description": "超时秒数,默认30", "default": 30 } }, "required": ["command"] } ``` ## Execute ```bash scripts/shell.sh ```