get-objective
Retrieve Shortcut objectives by public ID, offering full or slim field options, enabling efficient project management integration via the Shortcut MCP Server.
Instructions
Get a Shortcut objective by public ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full | No | True to return all objective fields from the API. False to return a slim version that excludes uncommon fields | |
objectivePublicId | Yes | The public ID of the objective 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 objective fields from the API. False to return a slim version that excludes uncommon fields",
"type": "boolean"
},
"objectivePublicId": {
"description": "The public ID of the objective to get",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"objectivePublicId"
],
"type": "object"
}