update_list_item
Update a list item by marking it complete, renaming it, or moving it to a different section. Specify item and list IDs, then set the desired status, label, or section.
Instructions
Update a list item (mark complete, rename, move to section).
Use this when:
Marking an item as complete: "Check off milk from the list"
Renaming an item: "Change 'milk' to '2% milk'"
Moving an item to a different section
Parameters:
itemId (required): ID of the item to update
listId (required): ID of the list containing the item
label: New text for the item
status: "completed" to check off, "pending" to uncheck
section: Move to a different section
Returns: The updated item details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | New text for the item | |
| itemId | Yes | ID of the item to update | |
| listId | Yes | ID of the list containing the item | |
| status | No | 'completed' to check off, 'pending' to uncheck | |
| section | No | Move to a different section (null to remove from section) |