list-roles
Retrieve all roles for a specific client within a designated realm using the Advanced Keycloak MCP server. Simplify role management and access control analysis.
Instructions
List all roles of a specific client in a specific realm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | Client ID | |
realm | Yes | Realm name |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"description": "Client ID",
"type": "string"
},
"realm": {
"description": "Realm name",
"type": "string"
}
},
"required": [
"realm",
"clientId"
],
"type": "object"
}