quick_action
Execute predefined tasks like compressing images, converting files to PDF, resizing images, extracting text, combining PDFs, or converting videos using specific action commands and file inputs on the automator-mcp server.
Instructions
Run a predefined quick action
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Quick action to perform | |
files | Yes | File paths to process | |
options | No | Action-specific options |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Quick action to perform",
"enum": [
"compress_images",
"convert_to_pdf",
"resize_images",
"extract_text_from_pdf",
"combine_pdfs",
"convert_video"
],
"type": "string"
},
"files": {
"description": "File paths to process",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "Action-specific options",
"type": "object"
}
},
"required": [
"action",
"files"
],
"type": "object"
}