assign-current-user-as-owner
Assigns the current user as the owner of a specified story in Shortcut, streamlining task ownership management via the Shortcut MCP Server integration.
Instructions
Assign the current user as the owner of a story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storyPublicId | Yes | The public ID of the story |
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"
}
},
"required": [
"storyPublicId"
],
"type": "object"
}