run_shortcut
Execute Apple Shortcuts automations by name, optionally providing input for tailored workflows, using the Apple Shortcuts Server MCP integration.
Instructions
Run a Shortcuts automation by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | No | Optional input to pass to the shortcut | |
name | Yes | Name of the shortcut to run |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Optional input to pass to the shortcut",
"type": "string"
},
"name": {
"description": "Name of the shortcut to run",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}