replaceUser
Update user details by replacing an existing user's name and email using the MCP YAML API tool, ensuring accurate user management within the MCP server ecosystem.
Instructions
Replace an existing user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | |||
id | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"describe": "The email address of the user.",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"describe": "The name of the user.",
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
}