run_shortcut
Execute a Siri Shortcut by name or UUID using the Siri Shortcuts MCP Server, with optional input and output parameters for dynamic interaction.
Instructions
Run a shortcut by name or identifier (UUID) with optional input and output parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | No | The input to pass to the shortcut. Can be text, or a filepath | |
name | Yes | The name or identifier (UUID) of the shortcut to run |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input": {
"description": "The input to pass to the shortcut. Can be text, or a filepath",
"type": "string"
},
"name": {
"description": "The name or identifier (UUID) of the shortcut to run",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}