update_entity_record
Update an existing entity record by specifying the entity, primary key, and properties to change. Only the provided properties are modified, preserving all other fields.
Instructions
Update an existing entity record. ⚠️ Requires Update permission on the entity.
Provide the entity name, primary key, and the properties to update. Only the properties you include will be changed — others remain unchanged. Optionally include child entity records.
IMPORTANT: This modifies real data. There is NO delete/undo via this MCP. Use get_entity_record first to see the current state before updating.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The primary key of the record to update | |
| children | No | Optional. Map of child entity names to arrays of child records. When updating children, include the full set of children you want to exist after the update (existing children not included may be removed). | |
| entityName | Yes | The entity name to update (e.g., 'ui_catalog', 'user') | |
| properties | Yes | Key-value pairs of entity property names to their new values. Only include the fields you want to change. |