create-user
Add a new user to a Keycloak realm by specifying username, email, first name, and last name using the Keycloak MCP Server tool.
Instructions
Create a new user in a specific realm
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | |||
| firstName | Yes | ||
| lastName | Yes | ||
| realm | Yes | ||
| username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"format": "email",
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"realm": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"realm",
"username",
"email",
"firstName",
"lastName"
],
"type": "object"
}