delete-user
Remove a user from a specific realm in Keycloak using the MCP server. Specify the realm and user ID to ensure accurate deletion, streamlining user management tasks.
Instructions
Delete a user from a specific realm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | Yes | ||
userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"type": "string"
},
"userId": {
"type": "string"
}
},
"required": [
"realm",
"userId"
],
"type": "object"
}