MCP Catalogs
Home

time vs applescript-mcp

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

time
by modelcontextprotocol
applescript-mcp
by peakmojo
Stars★ 85,748★ 457
30d uses
Score7751
Official
Categories
ProductivityDeveloper ToolsCommunication
ProductivityFile SystemDeveloper Tools
LanguageTypeScriptPython
Last committhis month3 mo ago

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

applescript-mcp · Summary

MCP server for AppleScript execution on Mac, enabling AI control of system applications and files.

time · Use cases

  • Assisting with international meeting scheduling across time zones
  • Providing real-time time information for location-based queries
  • Enabling time conversion for travel planning and itineraries

applescript-mcp · Use cases

  • Automating calendar events and reminders via AI
  • Reading and managing Notes and Messages applications
  • Executing file system operations and shell commands

time · Install

Installation Options

**Using uv (recommended):**

uvx mcp-server-time

**Using PIP:**

pip install mcp-server-time
python -m mcp_server_time

**Configure for Claude Desktop:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}

applescript-mcp · Install

Installation

Node.js
{
  "mcpServers": {
    "applescript_execute": {
      "command": "npx",
      "args": [
        "@peakmojo/applescript-mcp"
      ]
    }
  }
}
Python (uvx)
{
  "mcpServers": {
    "applescript_execute": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/peakmojo/applescript-mcp",
        "mcp-server-applescript"
      ]
    }
  }
}
Python (local development)
  1. Clone the repository
git clone https://github.com/peakmojo/applescript-mcp.git
  1. Configure Claude Desktop
{
  "mcpServers": {
    "applescript_execute": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/your/repo",
        "run",
        "mcp-server-applescript"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.