haproxy_service_control
Manage HAProxy service operations including start, stop, restart, reload, and status checks directly through the OPNSense MCP Server.
Instructions
Control HAProxy service (start, stop, restart, reload)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Service action to perform |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Service action to perform",
"enum": [
"start",
"stop",
"restart",
"reload",
"status"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}