Timezone-correct CalDAV scheduling MCP server with validated recurrence and single-occurrence edits.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
If you are an agent installing this MCP, read AGENTS.md first.
A thin, timezone-correct MCP server for scheduling against any CalDAV calendar. It gives an LLM agent a small, strict set of calendar tools and does the deterministic, fiddly parts of iCalendar correctly so the model doesn't have to.
It is not an NLP layer: the agent phrases the request, the server validates
it, rejects bad input loudly, and persists clean zoned .ics.
Most calendar tooling an LLM reaches for gets three things subtly wrong. cal-scheduler fixes them by construction:
TZID/VTIMEZONE, so a
weekly 9am stays 9am across a daylight-saving boundary instead of drifting an
hour. Storing bare UTC is the classic cause of that drift.RRULE whose anchor contradicts it (e.g.
a series starting on the 30th but set to repeat on the 1st), and normalises
UNTIL to UTC under a zoned DTSTART as RFC 5545 requires.EXDATE) or move one
instance (RECURRENCE-ID) without disturbing the rest of the series β the
operations naive wrappers tend to lack.A small uv Python package that composes mature libraries rather than
implementing a calendar engine:
| Module | Role |
|---|---|
config.py | environment config (CALDAV_*, CAL_DEFAULT_TZ) |
timezones.py | parse datetimes; naive β assume default-zone wall time, offset β normalise into the zone; report what was assumed |
ical.py | build/parse VEVENTs (icalendar), expand ranges (recurring-ical-events), recurrence validation, EXDATE/RECURRENCE-ID ops |
store.py | CalDAV transport (caldav) β list/create/delete calendars, get/put/delete events, read-modify-write with etag |
server.py | the FastMCP stdio server and the tool surface |
It runs as a stdio MCP server that an MCP host (Claude, an agent harness, etc.) spawns as a subprocess.
Requires Python β₯ 3.11. The package is on PyPI as
cal-scheduler-mcp:
(or pip install cal-scheduler-mcp, uvx --from cal-scheduler-mcp cal-scheduler,
etc.)
For editable dev work, install from a clone:
Don't
uv add cal-scheduler-mcpfor the MCP βuv addwrites into whatever project you're sitting in, not into the tool environment. For an MCP server (spawned as a subprocess),uv tool installis the right shape.
All configuration is via environment variables:
| Variable | Required | Default | Meaning |
|---|---|---|---|
CALDAV_BASE_URL | β | β | CalDAV server URL, e.g. http://127.0.0.1:5232 |
CALDAV_USERNAME | β | CalDAV account user | |
CALDAV_PASSWORD | β | CalDAV account password | |
CAL_DEFAULT_TZ | Pacific/Auckland | IANA zone every event is stored in |
Many MCP hosts strip inherited environment from stdio servers, so set these in the
host's per-server env block rather than relying on the ambient shell.
The MCP runs as a stdio subprocess that the host spawns. Many hosts strip
inherited PATH from that subprocess, so wire the uv run --directory
form rather than relying on the cal-scheduler shim being on the spawn
host's PATH:
/abs/path/to/cal-scheduler-mcp is the absolute path to a local clone of
this repo (see Install above).
If you installed from PyPI with uv tool install cal-scheduler-mcp, use the
installed shim directly:
Find the shim path with which cal-scheduler or uv tool list --show-paths.
Pair it with any CalDAV server. A simple self-hosted option is
Radicale (plain http://, no TLS needed for local use).
Events β list_events(start, end, [calendar]), create_event(summary, start, [end, calendar, description, location, rrule]), update_event(uid, β¦),
delete_event(uid, [calendar]), exclude_occurrence(uid, occurrence, [calendar]),
move_occurrence(uid, occurrence, new_start, [new_end, calendar]),
mark_done(uid, [calendar]) β tag an event done and record the timestamp.
Calendars β list_calendars, create_calendar(name), delete_calendar(name).
Helper β resolve_datetime(value) β preview how a datetime will be interpreted,
without writing anything.
Every event is stored zoned to CAL_DEFAULT_TZ.
2026-06-30T21:00) is assumed to be wall time in that zone,
and the tool response says so ("assumed Pacific/Auckland wall time").β¦+12:00) is honoured as an instant and
re-expressed in the zone β same wall clock when the offset matches, a correct
conversion otherwise.2026-06-30) is an all-day event.The unit tests cover the pure layers (timezone resolution, recurrence validation,
EXDATE/RECURRENCE-ID construction) and need no running CalDAV server. To exercise
the full stack end to end, point CALDAV_BASE_URL at a throwaway CalDAV account.
MIT Β© 2026 Robert Clark
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/cal-scheduler)<a href="https://allmcps.com/mcp/cal-scheduler"><img src="https://allmcps.com/api/badge/cal-scheduler?style=directory" alt="Cal Scheduler on AllMCPs" /></a>