keycloak_get_client
Retrieve a client's full configuration in Keycloak: authentication flows, redirect URIs, web origins, and attributes like token lifespans. Secrets are redacted; use a dedicated tool to read them.
Instructions
Get a client's full configuration: flows, redirect URIs, web origins, and its attributes (including token lifespans). Its secret, if any, is redacted — use keycloak_get_client_secret to read it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| realm | No | Realm to operate on. Defaults to the server's configured realm (KEYCLOAK_REALM). | |
| clientUuid | Yes | Client UUID — the `id` field, NOT the human-facing clientId string. Every /clients/{id} path takes the UUID. Get it from keycloak_list_clients. |