get-story
Retrieve Shortcut stories by public ID; optionally fetch all fields or a streamlined version. Integrates Shortcut data access into AI tools via the Shortcut MCP Server API.
Instructions
Get a Shortcut story by public ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full | No | True to return all story fields from the API. False to return a slim version that excludes uncommon fields | |
storyPublicId | Yes | The public ID of the story to get |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"full": {
"default": false,
"description": "True to return all story fields from the API. False to return a slim version that excludes uncommon fields",
"type": "boolean"
},
"storyPublicId": {
"description": "The public ID of the story to get",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId"
],
"type": "object"
}