npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kembec/ical-mcp-linux-arm64

v0.1.5

Published

ical-mcp binary for linux arm64

Downloads

406

Readme

ical-mcp

npm License

A Model Context Protocol server for iCloud Calendar, written in Rust.

It talks CalDAV directly to caldav.icloud.com, exposes five tools over JSON-RPC on stdio, and ships as a single static binary — no JVM, no Python runtime, no daemons.

Prerequisites

  • An Apple ID
  • An app-specific password for that Apple ID (regular Apple ID passwords will not work with CalDAV)

Installation

npm install -g @kembec/ical-mcp

Or run with npx:

npx @kembec/ical-mcp

Configuration

Set two environment variables before launching the server:

export ICLOUD_USERNAME="[email protected]"
export ICLOUD_PASSWORD="xxxx-xxxx-xxxx-xxxx"   # app-specific password

Credentials are read at startup and never written to disk.

Cursor

Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "ical": {
      "command": "npx",
      "args": ["-y", "@kembec/ical-mcp"],
      "env": {
        "ICLOUD_USERNAME": "[email protected]",
        "ICLOUD_PASSWORD": "xxxx-xxxx-xxxx-xxxx"
      }
    }
  }
}

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ical": {
      "command": "npx",
      "args": ["-y", "@kembec/ical-mcp"],
      "env": {
        "ICLOUD_USERNAME": "[email protected]",
        "ICLOUD_PASSWORD": "xxxx-xxxx-xxxx-xxxx"
      }
    }
  }
}

Codex CLI

Add to ~/.codex/config.toml:

[mcp_servers.ical]
command = "npx"
args = ["-y", "@kembec/ical-mcp"]
enabled = true

[mcp_servers.ical.env]
ICLOUD_USERNAME = "[email protected]"
ICLOUD_PASSWORD = "xxxx-xxxx-xxxx-xxxx"

Tools

  • list-calendars — list every calendar in the account.
  • get-eventscalendar_id, start_date, end_date (YYYY-MM-DD).
  • create-eventcalendar_id, title, then either start_time/end_time (ISO 8601) for timed events or start_date/end_date with all_day: true for all-day events. Optional: description, location, timezone.
  • update-eventevent_id (UID or full URL) plus any of title, start_time, end_time, description, location.
  • delete-eventevent_id (UID or full URL).

calendar_id accepts either the calendar's display name or its full CalDAV URL. event_id accepts the iCalendar UID or the resource URL returned by create-event.

Building from source

cargo build --release
./target/release/ical-mcp

License

MIT