delete-user
Remove a user from a specified realm in the Keycloak MCP server by providing the realm name and user ID for precise deletion.
Instructions
Delete a user from a specific realm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | Yes | Realm name | |
userId | Yes | User ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"description": "Realm name",
"type": "string"
},
"userId": {
"description": "User ID to delete",
"type": "string"
}
},
"required": [
"realm",
"userId"
],
"type": "object"
}