Weft
EN
Tasks · MCP

Update Task

update_task is one of the 32 MCP tools in Weft, the AI task manager you run by talking to Claude, Cursor, Codex or ChatGPT through one MCP endpoint. Patch an existing task's fields. Only fields you pass are changed; omitted fields are preserved — with one exception: clearing requiresReview is refused for an agent, and the refusal takes the whole patch with it.

Arguments

NameTypeRequiredDescription
iduuidyesTask id to update.
titlestringnoNew title.
descriptionstringnoNew description (Markdown).
priority"low" | "medium" | "high" | "urgent"noNew priority.
projectstring | nullnoNew project — name (case-insensitive) or id; null detaches the task from its project.
assigneestring | nullnoNew executor — a member’s name or email, "me" (the calling agent), or "none"/null to unassign.
estimateMinutesintegernoNew estimate in minutes.
dueAtISO-8601 datetime string | nullnoNew due date; pass null to clear.
requiresReviewbooleannoStop at the user before this counts as done. For the irreversible only — money, publishing outward, production, anything legal; everything else finishes without them. An agent can turn it on but not off: while the flag stands only you clear it, by accepting the work in your queue or in the app, and a false sent against a standing flag is refused together with the rest of that patch.
verification{ mode, checks[] } | nullnoReplace the verification plan (null removes it). Any write resets every check to pending — a new plan is unverified by definition. See create_task for the shape.
blockedByuuid[]noREPLACE the set of tasks blocking this one — what you pass is what holds; [] unblocks entirely. Cycles are refused.

Returns

The updated task.

Annotations

  • idempotent. Calling the tool twice with the same arguments has the same effect as calling it once.

Example

What the user says:

"Bump the priority of the auth refactor to urgent."

Related