Apple Calendar MCP Server

Apple Calendar MCP Server

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

Category
Visit Server

README

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).
  3. 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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured