foxtrottwist/shortcuts-mcp
If you are the rightful owner of shortcuts-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A TypeScript MCP server that enables Claude to execute macOS Shortcuts through the native `shortcuts` CLI, providing seamless automation and cross-device capabilities.
Shortcuts MCP
A TypeScript MCP server that connects LLMs to your macOS Shortcuts library. Interactive workflows with file pickers, dialogs, and prompts work through AppleScript integration, while CLI handles discovery and management.
Why This Exists
I wanted to integrate my existing automation workflows with AI assistance. Rather than manually triggering shortcuts outside of my LLM and then copying results back, this server lets me run shortcuts directly within AI conversations for better automation.
What You Get
- Interactive Support: File pickers, dialogs, and prompts work normally through AppleScript execution
- Hybrid Integration: AppleScript for compatibility + CLI for discovery and management
- Permission Handling: Location services, system integrations work with proper permission context
- All Shortcut Types: Interactive workflows and automation both work reliably
- Reliable Execution: No hanging on permission requests or interactive elements
- Local Usage Tracking: Execution history and preferences stored only on your computer
- Intelligent Analytics: Automatic usage pattern analysis via MCP sampling (when supported)
Installation
Option 1: MCP Bundle (.mcpb) - Recommended
- Download the latest
.mcpb
file from Releases - Double-click the .mcpb file or drag it onto Claude Desktop
- Click "Install" in the Claude Desktop UI
- Restart Claude Desktop
Option 2: Manual Installation
Clone and build locally for development:
git clone https://github.com/foxtrottwist/shortcuts-mcp.git
cd shortcuts-mcp
npm install
npm run build
Add to your MCP client configuration. For Claude Desktop:
{
"mcpServers": {
"shortcuts-mcp": {
"command": "node",
"args": ["/absolute/path/to/shortcuts-mcp/dist/server.js"]
}
}
}
Tested MCP Clients
This server has been tested with the following MCP clients:
- Claude Desktop
- LM Studio - Tested with models like
gpt-oss
andqwen3-1.7b
(manual installation only)
How to Use It
Interactive Workflows
Run my "Photo Organizer" shortcut
File pickers and dialogs appear normally for user interaction. All shortcut types work including location-based and permission-requiring workflows.
Finding the Right Shortcut
What shortcuts do I have for file processing?
What shortcuts have I used this week?
Which of my shortcuts work best for photo editing?
Your AI assistant can browse your complete shortcuts library, check your usage history (stored locally), and suggest options based on what's worked for you before.
Examples That Work
Run my "Get Weather" shortcut
Run "Create QR Code"
Execute my "File Organizer"
Both automated and interactive shortcuts work reliably through AppleScript execution.
Execution Tracking - Local Organization
The server keeps track of your shortcut usage to help organize your workflow. All execution history and preferences stay on your computer - no data is transmitted anywhere.
What Gets Tracked
- Which shortcuts you run and when
- Execution success/failure for debugging
- Basic preferences you set through your AI assistant
- Usage patterns for shortcut suggestions
Privacy Note: Shortcut inputs and outputs are not stored locally. Be cautious when running shortcuts containing sensitive information, as you control what data is shared with your AI assistant.
Privacy-First Design
- Everything stored in
~/.shortcuts-mcp/
on your Mac - No cloud sync, no data sharing, no external connections
- You can delete the folder anytime to reset
- Only you and your AI assistant (locally) can access this information
Practical Benefits
After using shortcuts for a while, you can ask your AI assistant things like:
What shortcuts have I used this week?
Which shortcuts failed recently?
Remember I prefer the "Photo Editor Pro" shortcut for image work
Takes a few runs to build useful history - the tracking helps your AI assistant give better suggestions based on what actually works for you.
MCP Sampling for Intelligent Analytics
When your MCP client supports sampling, the server automatically generates statistics from your usage data. This includes:
- Success rate analysis across different shortcuts
- Performance timing patterns
- Usage trend identification
- Personalized shortcut recommendations
Current Status: Claude Desktop does not yet support MCP sampling, so analytics are not available. The server detects sampling capability automatically and enables these features when supported.
Interactive Shortcuts - Full Support
AppleScript integration enables complete interactive shortcut support. File pickers, dialogs, prompts, and menus all work normally for user interaction.
What Works
- Interactive workflows with file pickers, dialogs, and forms
- Location-based shortcuts with proper permission handling
- Automated processes that run without user input
- System integrations (Calendar, Messages, Notes)
How It Works
When running interactive shortcuts:
Run my "Create Contact" shortcut
Result: Forms and dialogs appear normally. You can fill out contact information, select files, or interact with any UI elements as if running the shortcut manually.
Error Handling:
- "User canceled": Dialog was dismissed or timed out
- "missing value": Interaction completed but returned no data
- Successful completion: Normal data output from interaction
Architecture Improvements
Hybrid Execution Model
AI Assistant ββ MCP Server ββ [AppleScript Execution + CLI Discovery] ββ Shortcuts App ββ Apple Ecosystem
AppleScript Execution: Reliable permission context for all shortcut types CLI Discovery: Fast listing and identification of available shortcuts Permission Awareness: Graceful handling of location services and system permissions
Reliability Enhancements
- Permission Context: AppleScript runs through "Shortcuts Events" with proper user permissions
- Apple CLI Bug Handling: Name resolution differences detected
- Logging: Timing, debugging, permission detection for troubleshooting
Building Shortcuts for Claude
All Shortcut Types Work
AppleScript integration supports interactive and automated shortcuts. Build shortcuts that take advantage of this:
- Interactive workflows with file selection and user input
- Automated processes for background execution
- Hybrid approaches combining interaction with automation
Output Design by Shortcut Type
For Data Retrieval Shortcuts: When your shortcut fetches information that your AI assistant should receive, explicit output configuration is essential. Without it, you'll get unexpected results.
Real Example: Weather Shortcut
The "Get The Weather" shortcut demonstrates proper output configuration. The "Text" action converts the weather data to the correct type, and the "Stop and output" action ensures the shortcut produces output that reaches the command line.
What happens without proper output configuration:
- Before: Shortcut gets weather data internally but returns timestamp:
"2025-08-05T16:52:06.691Z"
- AI assistant tells user: "The current time is August 5thβ¦"
- After: Text action converts data + Stop and output ensures delivery:
"Partly cloudy, 72Β°F"
- AI assistant tells user: "The weather is partly cloudy, 72Β°F"
For System Action Shortcuts: When your shortcut changes system settings or performs actions, output configuration is optional:
Works fine without explicit output:
[Adjust Brightness] β [Set Focus Mode] β (no output configuration needed)
Your AI assistant receives action confirmation and can tell the user the changes completed successfully.
Key question: "Does the user expect their AI assistant to tell them specific information from this shortcut?"
- Yes (Data Retrieval) β Add Text action (conversion) + Stop and output action (delivery)
- No (System Action) β Output configuration optional, action confirmation is sufficient
Quick test: Run your shortcut in Terminal:
osascript -e 'tell application "Shortcuts Events" to run the shortcut named "Your Shortcut"'
If you see no output, your LLM won't get data either.
Design Approaches
Interactive: "Photo Editor" β File picker for images, processing menu, save results Automated: "Daily Backup" β Runs automatically, returns status summary Hybrid: "Custom Report" β User selects data source, automatic processing
For Best Claude Integration
While all shortcuts work, some integrate better with AI assistant workflows:
- Return clear text output that your AI assistant can understand and act on
- Provide completion messages rather than silent operations
- Include error handling with informative responses
- Design for both modes when possible (interactive + automated)
Examples:
- File Processing: "Organize Files" β Returns summary with file counts and locations
- Weather: "Get Weather Report" β Returns structured weather data as text
- System Tasks: "Deploy Project" β Returns deployment status and any issues
- Cross-Device: "Create Event" β Returns confirmation with calendar integration details
Real-World Interactive Examples
Note: These examples show what's possible - you need to create and configure these shortcuts in your Shortcuts app first.
- "Choose Files for Upload": File picker dialog for document selection
- "Custom QR Generator": Input form for text/URL entry with format options
- "Photo Processing Menu": Image picker followed by processing options menu
- "Contact Creator": Multi-field form for complete contact information entry
- "Project Template Selector": Menu-driven workflow setup with customization options
How It Works
Technical Implementation
AppleScript Integration: Native osascript
execution bypasses subprocess permission limitations that caused location-based shortcuts to hang
Dual-Layer Security:
- Shell escaping for command construction safety
- AppleScript string escaping for script content protection
Error Detection:
- Permission error codes (1743) detected with solution guidance
- Timeout behaviors managed gracefully
MCP Integration
- Tools:
run_shortcut
- AppleScript execution with comprehensive loggingshortcuts_usage
- Read and update local preferences and usage trackingview_shortcut
- CLI editor opening with fallback guidance
- Resources (automatically embedded):
shortcuts://available
- Current shortcuts listcontext://system/current
- System state for time-based suggestionscontext://user/profile
- User preferences and usage patternsstatistics://generated
- AI-generated statistics from execution history (when sampling supported)
- Enhanced Prompts: AI-powered shortcut recommendation with name resolution strategies
- Local Data Storage: Performance tracking, permission detection, debugging information (stays on your computer)
Real-World Examples
Note: These examples show what's possible - you need to create and configure these shortcuts in your Shortcuts app first.
Location-Based Workflows
- "Find Coffee Shops": Location services handled properly via AppleScript context
- "Weather for Current Location": Geographic permissions work reliably
System Integration
- "Backup Notes": File system operations with proper permissions
- "System Status Report": Hardware monitoring and reporting
- "Network Diagnostics": System-level network analysis
Development
Prerequisites
- Node.js 22+
- macOS with Shortcuts app
- TypeScript knowledge for contributions
Setup
# Clone repository
git clone https://github.com/foxtrottwist/shortcuts-mcp.git
cd shortcuts-mcp
# Install dependencies
npm install
# Development mode with hot reload
npm run dev
# Build for production
npm run build
# Build .mcpb bundle
npm run build:mcpb
Project Structure
src/
βββ server.ts # MCP server configuration
βββ shortcuts.ts # AppleScript + CLI integration
βββ shortcuts-usage.ts # Local execution tracking and preferences
βββ sampling.ts # AI-driven statistics generation via MCP sampling
βββ helpers.ts # Security and utility functions
βββ shortcuts.test.ts # AppleScript execution tests
βββ shortcuts-usage.test.ts # Usage tracking and analytics tests
βββ helpers.test.ts # Security function tests
Core Functions
// AppleScript execution with comprehensive logging
await runShortcut(log, "Shortcut Name", "input");
// CLI discovery and management
await listShortcuts(); // Fast shortcut enumeration
await viewShortcut(log, "Shortcut Name"); // Editor opening
// Security utilities
shellEscape(userInput); // Shell injection protection
escapeAppleScriptString(content); // AppleScript safety
Testing
Comprehensive test suite with 63 tests covering AppleScript integration, user context tracking, security functions, error handling scenarios, and logging validation:
npm run test # Run complete test suite (63 tests)
npm run lint # Linting and type checking
npm run format # Code formatting
Troubleshooting
Common Issues
"Permission denied" or Error 1743 Grant automation permissions in System Preferences β Privacy & Security β Automation. Allow Terminal/Claude Desktop to control "Shortcuts Events."
"Shortcut not found" with CLI commands
Apple CLI has name resolution bugs. AppleScript execution is more forgiving. Use exact names from Available Shortcuts resource. Note: UUID fallback only works with CLI commands (like shortcuts view
), not with AppleScript execution.
Location-based shortcuts not working Ensure Location Services are enabled for Shortcuts app in System Preferences β Privacy & Security β Location Services.
Interactive shortcuts opening in editor This is expected behavior. Interactive shortcuts cannot display UI in MCP context but can be completed manually in the editor.
Debugging
Check shortcut execution directly:
# Test CLI discovery
shortcuts list --show-identifiers
# Test AppleScript execution
osascript -e 'tell application "Shortcuts Events" to run the shortcut named "My Shortcut"'
Monitor comprehensive logging in your MCP client console for timing, permission detection, and error analysis.
Execution Characteristics
- Permission Context: Reliable execution vs CLI subprocess limitations
- Logging Detail: Performance timing, debugging info, permission detection
Compatibility
- macOS: 12+ (Monterey and later)
- Shortcuts: All shortcut types with permission-aware handling
- MCP Clients: Full MCP protocol compatibility
- Node.js: 22+ recommended
What's Next
- AppleScript integration with permission handling
- Comprehensive logging and error detection
- MCPB bundle format and automated releases
- Structured logging and error detection
- Workflow chaining capabilities
- Performance monitoring and analytics
Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature
- Make your changes with tests covering AppleScript integration
- Run the test suite:
npm run test
- Submit a pull request
License
MIT License - see
Author
Law Horne
- Website: lawrencehorne.com
- Email: hello@foxtrottwist.com
- MCP Projects: lawrencehorne.com/mcp
Part of the Model Context Protocol ecosystem - enabling AI assistants to interact with external tools and data sources.