execute_command
Execute system commands directly from the MCP server to automate tasks, run scripts, and perform system operations with specified working directories.
Instructions
Execute a system command (use with caution)
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| command | Yes | The command to execute | |
| cwd | No | Working directory for the command | 
Input Schema (JSON Schema)
{
  "properties": {
    "command": {
      "description": "The command to execute",
      "type": "string"
    },
    "cwd": {
      "description": "Working directory for the command",
      "type": "string"
    }
  },
  "required": [
    "command"
  ],
  "type": "object"
}