createUser
The tool generates a new user by defining name and email fields via the MCP YAML API, enabling user creation in external systems without custom coding.
Instructions
Create a new user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | |||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"describe": "The email address of the user.",
"type": "string"
},
"name": {
"describe": "The name of the user.",
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
}