create-user
Add a new user to the database by providing name, email, address, phone, and password. Designed for the MCP Personal Tools Server to manage user accounts efficiently.
Instructions
Create a new user in the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
Yes | |||
name | Yes | ||
password | Yes | ||
phone | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"phone": {
"type": "string"
}
},
"required": [
"name",
"email",
"address",
"phone",
"password"
],
"type": "object"
}