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

@honest-magic/caldav-mcp

v0.3.1

Published

MCP server for AI-powered calendar access via CalDAV

Readme

caldav-mcp

MCP server for AI-powered calendar access via CalDAV. Works with Claude Desktop and other MCP clients.

Features

  • List calendars and events across multiple CalDAV accounts
  • Create, update, and delete calendar events (with confirmation)
  • Check scheduling conflicts (expands recurring events)
  • Suggest available time slots with working hours filter
  • Parse .ics calendar invite files
  • OS keychain credential storage (no plaintext secrets)

Install

Homebrew (macOS)

brew tap honest-magic/tap
brew install caldav-mcp

npm

npm install -g @honest-magic/caldav-mcp

npx (no install)

npx @honest-magic/caldav-mcp accounts add

Setup

1. Add a CalDAV account

caldav-mcp accounts add

Interactive prompts for account ID, server URL, username, and password. Password is stored in your OS keychain. Connection is tested automatically.

Common server URLs:

  • iCloud: https://caldav.icloud.com (use an app-specific password)
  • Google: https://apidata.googleusercontent.com/caldav/v2
  • Fastmail: https://caldav.fastmail.com
  • Nextcloud: https://your-server.com/remote.php/dav

2. Register with Claude Desktop

caldav-mcp --install-claude

Restart Claude Desktop after running this.

3. Verify

caldav-mcp --validate-accounts

CLI

caldav-mcp [options] [command]

Commands:
  accounts add        Add a new CalDAV account (interactive)
  accounts list       List configured accounts
  accounts remove ID  Remove an account

Options:
  --validate-accounts Probe CalDAV connections and exit
  --install-claude    Write caldav-mcp to Claude Desktop config and exit
  --version           Show version number
  -h, --help          Show this help message

MCP Tools

| Tool | Description | |------|-------------| | list_calendars | List all calendars across accounts | | list_events | List events in a date range (expands recurring) | | read_event | Read full event details | | create_event | Create a new event (requires confirmation) | | update_event | Update an existing event (requires confirmation + etag) | | delete_event | Delete an event (requires confirmation + etag) | | check_conflicts | Check if a time range conflicts with existing events | | suggest_slots | Find available time slots with optional working hours | | parse_ics | Parse raw iCalendar data | | register_oauth2_account | Register a Google/OAuth2 calendar account |

Requirements

  • Node.js >= 18
  • A CalDAV-compatible calendar server

License

MIT