keycloak_list_clients
Lists clients in a Keycloak realm, returning both UUID and clientId, with optional filters for search, pagination, and visibility.
Instructions
List the realm's clients (applications). Returns both id (the UUID every other client tool needs) and clientId (the name shown in the console).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max | No | Maximum number of results to return (1-500). Defaults to 50. | |
| first | No | Pagination offset — index of the first result to return (0-based). | |
| realm | No | Realm to operate on. Defaults to the server's configured realm (KEYCLOAK_REALM). | |
| search | No | Treat `clientId` as an infix search instead of exact. | |
| clientId | No | Filter by the exact clientId string, e.g. `admin-cli`. | |
| viewableOnly | No | Only clients this token is allowed to view. |