add-task-to-story
Assign tasks to a Shortcut story with a description and designated owners using the MCP server. Simplify project management by integrating with AI tools for streamlined task creation.
Instructions
Add a task to a story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storyPublicId | Yes | The public ID of the story | |
taskDescription | Yes | The description of the task | |
taskOwnerIds | No | Array of user IDs to assign as owners of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
},
"taskDescription": {
"description": "The description of the task",
"minLength": 1,
"type": "string"
},
"taskOwnerIds": {
"description": "Array of user IDs to assign as owners of the task",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"storyPublicId",
"taskDescription"
],
"type": "object"
}