update_board_card
Update board card fields: title, description, status, assignee, members, location, cover, start date, and due date. Use null to clear specific fields.
Instructions
Update board card fields: title, markdown description, status, assignee, members, location, cover, startDate, and dueDate. Use null to clear clearable fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | a string that will be trimmed | |
| card | Yes | a string that will be trimmed | |
| title | No | a string that will be trimmed | |
| description | No | New board card description in markdown. Pass null to clear; empty string is also accepted. | |
| status | No | a string that will be trimmed | |
| assignee | No | New assignee Employee _id, exact email, or exact person display name; null unassigns. | |
| members | No | Replace card members with this exact list. Cannot be combined with addMembers or removeMembers. | |
| addMembers | No | Members to add without replacing existing members. | |
| removeMembers | No | Members to remove without replacing existing members. | |
| location | No | New card location. Pass null to clear; empty string is also accepted. | |
| cover | No | New card cover; null clears the cover. | |
| startDate | No | New start date timestamp in milliseconds; null clears it. | |
| dueDate | No | New due date timestamp in milliseconds; null clears it. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes | The successful tool result. The same value is also serialized as JSON in the text content for clients that do not read structuredContent. | |
| warnings | No | Optional agent-visible warnings about degraded result fidelity. Omitted when the server returned the documented happy-path payload. |