cldkctl_update_profile
Update user profile details including name, email, phone number, and address by calling the profile update endpoint on the MCP cldkctl Server.
Instructions
Call the cldkctl_update_profile endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address | |
Yes | Email address | ||
name | Yes | Full name | |
phone_number | Yes | Phone number | |
user_id | Yes | ID of the user to update |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address",
"type": "string"
},
"email": {
"description": "Email address",
"type": "string"
},
"name": {
"description": "Full name",
"type": "string"
},
"phone_number": {
"description": "Phone number",
"type": "string"
},
"user_id": {
"description": "ID of the user to update",
"type": "string"
}
},
"required": [
"user_id",
"name",
"email",
"phone_number",
"address"
],
"type": "object"
}