list_bare_metal_servers_by_status
Filter and retrieve Vultr bare metal servers based on their current operational status to monitor infrastructure or manage deployments.
Instructions
List bare metal servers by status.
Args: status: Server status to filter by (e.g., 'active', 'stopped', 'installing')
Returns: List of bare metal servers with the specified status
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| status | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "status": {
      "title": "Status",
      "type": "string"
    }
  },
  "required": [
    "status"
  ],
  "type": "object"
}