reset-user-password
Reset or set a new password for a user in a specific realm on the Advanced Keycloak MCP server. Specify the realm, user ID, new password, and optional temporary flag.
Instructions
Reset or set a new password for a user in a specific realm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | New password | |
realm | Yes | Realm name | |
temporary | No | Whether the password is temporary | |
userId | Yes | User ID |
Input Schema (JSON Schema)
{
"properties": {
"password": {
"description": "New password",
"type": "string"
},
"realm": {
"description": "Realm name",
"type": "string"
},
"temporary": {
"default": false,
"description": "Whether the password is temporary",
"type": "boolean"
},
"userId": {
"description": "User ID",
"type": "string"
}
},
"required": [
"realm",
"userId",
"password"
],
"type": "object"
}