MCP Catalogs
Home

mcp-server-siri-shortcuts vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-siri-shortcuts
by dvcrn
everything
by modelcontextprotocol
Stars★ 187★ 85,748
30d uses
Score4877
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

mcp-server-siri-shortcuts · Summary

MCP server that lets LLMs interact with macOS Siri shortcuts through listing, opening, and executing them.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-server-siri-shortcuts · Use cases

  • Automate repetitive iOS tasks through voice commands to AI assistants
  • Create workflows where AI triggers complex shortcut sequences
  • Develop productivity tools that bridge AI capabilities with iOS automation

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-server-siri-shortcuts · Install

npm install -g mcp-server-siri-shortcuts

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "siri-shortcuts": {
      "command": "npx",
      "args": ["mcp-server-siri-shortcuts"],
      "env": {
        "GENERATE_SHORTCUT_TOOLS": "true",
        "INJECT_SHORTCUT_LIST": "false"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.