wordpress_create_user
Create new WordPress users with specific roles by providing username, email, and password credentials for site administration and access management.
Instructions
Create a new WordPress user with roles
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | ||
| Yes | |||
| password | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"type": "string"
},
"password": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"username",
"email",
"password"
],
"type": "object"
}