get_client_by_clientid
Retrieve a specific client object by providing the client ID and optional realm in the mcp-keycloak server for identity and access management.
Instructions
Get a specific client by client ID.
Args:
client_id: The client's client_id
realm: Target realm (uses default if not specified)
Returns:
Client object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | ||
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"client_id": {
"title": "Client Id",
"type": "string"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"client_id"
],
"title": "get_client_by_clientidArguments",
"type": "object"
}