Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Connects to Apple Calendar via Eventlink to fetch and create events with natural language date support.

README.md

Apple Calendar MCP Server

A Model Context Protocol (MCP) server that connects to Apple Calendar via a local Eventlink instance.

Features

  • Fetch Events: Get calendar events for specific dates or ranges.
  • Natural Language Dates: Supports "today", "tomorrow", "next Monday".
  • Create Events: Add new events to your calendar.
  • SSE Transport: Runs as a local web service.
  • MacOS Integration: Runs automatically at login via Launch Agent.

Prerequisite

  1. Eventlink: You must have Eventlink (or compatible server) running locally.
  2. Node.js: Version 18+ (LTS recommended).

Installation

  1. Clone this repository.
  2. Copy .env.example to .env and configure your settings:
    cp .env.example .env
  • EVENTLINK_TOKEN: Your Eventlink bearer token.
  • EVENTLINK_URL: URL to Eventlink (default: http://localhost:9000).
  • PORT: Port for this MCP server (default: 6372).
  1. Run the installation script:
    ./install.sh

This will:

  • Install dependencies.
  • Build the project.
  • Create and load a macOS Launch Agent to keep the server running in the background.

Usage

Managing the Server

  • Start: ./start.sh (Manually start the background service)
  • Stop: ./stop.sh (Stop the background service)
  • Uninstall: ./uninstall.sh (Remove the service and clean up)

Connecting to Claude Desktop / Clients

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "apple-calendar": {
      "command": "node",
      "args": ["/path/to/mcp-server-apple-calendar/dist/index.js"],
      "env": {
        "EVENTLINK_TOKEN": "your_token",
        "EVENTLINK_URL": "http://localhost:9000"
      }
    }
  }
}

Note: The install script sets up a background service listening on SSE (typically http://localhost:6372/sse). If your client supports SSE over HTTP, point it there. For Claude Desktop, using stdio (command execution) as shown above is also supported if you prefer not to use the background service, but this server is optimized for background execution.

Wait, this server is designed for SSE primarily via the background service.

If you want to use the SSE endpoint: URL: http://localhost:6372/sse

Tools

calendar_get_events

Fetches events for a given date.

  • date (string): "YYYY-MM-DD", "today", "tomorrow", "next Monday".
  • offset (number): Number of days (default: 1).
  • calendarName (string): Optional calendar override.

calendar_create_event

Creates a new event.

  • title (string): Event title.
  • startDate (string): "YYYY-MM-DD HH:MM".
  • endDate (string): "YYYY-MM-DD HH:MM".
  • notes (string): Optional notes.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.