update-task
Modify task details within a Shortcut story, including description, ownership, and completion status, using story and task IDs via the MCP server integration.
Instructions
Update a task in a story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isCompleted | No | Whether the task is completed or not | |
storyPublicId | Yes | The public ID of the story | |
taskDescription | No | The description of the task | |
taskOwnerIds | No | Array of user IDs to assign as owners of the task | |
taskPublicId | Yes | The public ID of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"isCompleted": {
"description": "Whether the task is completed or not",
"type": "boolean"
},
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
},
"taskDescription": {
"description": "The description of the task",
"type": "string"
},
"taskOwnerIds": {
"description": "Array of user IDs to assign as owners of the task",
"items": {
"type": "string"
},
"type": "array"
},
"taskPublicId": {
"description": "The public ID of the task",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId",
"taskPublicId"
],
"type": "object"
}