get-epic
Retrieve Shortcut epic details by public ID using the MCP server. Optionally, fetch all fields for comprehensive data or a slim version for essential information.
Instructions
Get a Shortcut epic by public ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epicPublicId | Yes | The public ID of the epic to get | |
full | No | True to return all epic fields from the API. False to return a slim version that excludes uncommon fields |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"epicPublicId": {
"description": "The public ID of the epic to get",
"exclusiveMinimum": 0,
"type": "number"
},
"full": {
"default": false,
"description": "True to return all epic fields from the API. False to return a slim version that excludes uncommon fields",
"type": "boolean"
}
},
"required": [
"epicPublicId"
],
"type": "object"
}