by dvcrn
Access mac keyboard shortcuts for screen capture and automate workflows with Siri Shortcuts. Streamline hotkey screensho
Connects to macOS Shortcuts app to list and run your custom automation workflows from AI assistants. Dynamically generates tools for each shortcut you have installed.
Siri Shortcuts is a community-built MCP server published by dvcrn that provides AI assistants with tools and capabilities via the Model Context Protocol. Access mac keyboard shortcuts for screen capture and automate workflows with Siri Shortcuts. Streamline hotkey screensho It is categorized under productivity, developer tools.
You can install Siri Shortcuts in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
GPL-3.0
Siri Shortcuts is released under the GPL-3.0 license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Siri Shortcuts is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated Siri Shortcuts against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: Siri Shortcuts is the kind of server we cite when onboarding engineers to host + tool permissions.
Siri Shortcuts is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Siri Shortcuts has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We wired Siri Shortcuts into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Strong directory entry: Siri Shortcuts surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Siri Shortcuts is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
I recommend Siri Shortcuts for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We evaluated Siri Shortcuts against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 51
This MCP server provides access to Siri shortcuts functionality via the Model Context Protocol (MCP). It allows listing, opening, and running shortcuts from the macOS Shortcuts app.

list_shortcuts
{
"shortcuts": [{ "name": "My Shortcut 1" }, { "name": "My Shortcut 2" }]
}
open_shortcut
name (string): Name of the shortcut to openrun_shortcut
name (string): Name or identifier (UUID) of the shortcut to runinput (string, optional): Text input or filepath to pass to the shortcutThe server automatically generates additional tools for each available shortcut in the format:
run_shortcut_[sanitized_shortcut_name]input (string, optional): Text input or filepath to pass to the shortcutThe server supports the following environment variables:
GENERATE_SHORTCUT_TOOLS (default: true): When set to false, disables the generation of dynamic shortcut tools. Only the base tools (list_shortcuts, open_shortcut, run_shortcut) will be available.INJECT_SHORTCUT_LIST (default: false): When set to true, injects the list of available shortcuts into the run_shortcut tool description to help the LLM understand which shortcuts are available.Add to your Claude configuration:
{
"mcpServers": {
"siri-shortcuts": {
"command": "npx",
"args": ["mcp-server-siri-shortcuts"],
"env": {
"GENERATE_SHORTCUT_TOOLS": "true",
"INJECT_SHORTCUT_LIST": "false"
}
}
}
}
shortcuts CLI command under the hoodPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.