unifi_clients
List connected UniFi clients with pagination and filters, retrieve client details, and authorize guest access.
Instructions
Connected clients (list, details, guest authorization). Operations:
list (Read): List Connected Clients
get (Read): Get Connected Client Details
execute_action (Admin): Execute Client Action — requires confirm: true List results are pages: { offset, limit (max 200), count, totalCount, data[] }. Filtering: pass filter as property.function(args); combine with and(...), or(...), not(...). Functions: eq, ne, gt, ge, lt, le, like, in, notIn, isNull, isNotNull; SET: contains, containsAny, containsAll, containsExactly, isEmpty. Strings use single quotes ('guest'); like patterns: '.'=one char, '*'=any run, ''=escape. For request-body shapes call unifi_spec with { operation: "unifi_clients." }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Request body for: execute_action. Exact schema via unifi_spec. | |
| limit | No | Page size (default 25, max 200). Used by: list. | |
| filter | No | Filter expression (see tool description). Used by: list. | |
| offset | No | Pagination offset (default 0). Used by: list. | |
| siteId | No | siteId (uuid). Used by: list, get, execute_action. | |
| confirm | No | Must be true to execute: execute_action. These change or remove live configuration. | |
| clientId | No | clientId (uuid). Used by: get, execute_action. | |
| consoleId | No | Cloud mode only: the console to target. Discover IDs with unifi_consoles. Ignored in direct (single-console) mode. | |
| operation | Yes | Which operation to perform. |