crear-usuario
Create a new user by providing a name, surname, and DNI. This tool is part of the MCP API Server, enabling efficient user management with structured input validation.
Instructions
Crea un nuevo usuario con nombre, apellido y DNI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apellido | Yes | ||
dni | Yes | ||
nombre | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apellido": {
"minLength": 2,
"type": "string"
},
"dni": {
"minLength": 8,
"type": "string"
},
"nombre": {
"minLength": 2,
"type": "string"
}
},
"required": [
"nombre",
"apellido",
"dni"
],
"type": "object"
}