Skip to main content
ClaudeWave
limey avatar
limey

cal-scheduler-mcp

View on GitHub

A timezone-correct CalDAV scheduling MCP server

MCP ServersOfficial Registry0 stars0 forksPythonMITUpdated today
Install in Claude Code / Claude Desktop
Method: UVX (Python) · cal-scheduler
Claude Code CLI
claude mcp add cal-scheduler-mcp -- uvx cal-scheduler
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "cal-scheduler-mcp": {
      "command": "uvx",
      "args": ["cal-scheduler"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

<!-- mcp-name: io.github.limey/cal-scheduler-mcp -->

**If you are an agent installing this MCP, read [AGENTS.md](https://github.com/limey/cal-scheduler-mcp/blob/main/AGENTS.md) first.**

# cal-scheduler

A thin, **timezone-correct** [MCP](https://modelcontextprotocol.io) server for
scheduling against any [CalDAV](https://en.wikipedia.org/wiki/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`.

## Why it exists

Most calendar tooling an LLM reaches for gets three things subtly wrong. cal-scheduler
fixes them by construction:

- **Stores zoned, not bare UTC.** Events are written with `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.
- **Validates recurrence.** It rejects an `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.
- **Does real single-occurrence edits.** Exclude one instance (`EXDATE`) or move one
  instance (`RECURRENCE-ID`) without disturbing the rest of the series — the
  operations naive wrappers tend to lack.

## How it works

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.

## Install

Requires Python ≥ 3.11. The package is on PyPI as
`cal-scheduler-mcp`:

```bash
uv tool install 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:

```bash
# run straight from the repo with uv (no global install)
uv run --directory /path/to/cal-scheduler-mcp cal-scheduler

# or install the console script into a tool environment
gh repo clone limey/cal-scheduler-mcp
uv tool install --editable /path/to/cal-scheduler-mcp
# or, with SSH GitHub access, in one step:
uv tool install git+ssh://git@github.com/limey/cal-scheduler-mcp
```

> Don't `uv add cal-scheduler-mcp` for the MCP — `uv add` writes
> into whatever project you're sitting in, not into the tool
> environment. For an MCP server (spawned as a subprocess),
> `uv tool install` is the right shape.

## Configure

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.

### Example MCP host config

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`:

```json
{
  "mcpServers": {
    "cal-scheduler": {
      "command": "uv",
      "args": ["run", "--directory", "/abs/path/to/cal-scheduler-mcp", "cal-scheduler"],
      "env": {
        "CALDAV_BASE_URL": "http://127.0.0.1:5232",
        "CALDAV_USERNAME": "me",
        "CALDAV_PASSWORD": "secret",
        "CAL_DEFAULT_TZ": "Pacific/Auckland"
      }
    }
  }
}
```

`/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:

```json
{
  "mcpServers": {
    "cal-scheduler": {
      "command": "/path/to/cal-scheduler",
      "env": {
        "CALDAV_BASE_URL": "http://127.0.0.1:5232",
        "CALDAV_USERNAME": "me",
        "CALDAV_PASSWORD": "secret",
        "CAL_DEFAULT_TZ": "Pacific/Auckland"
      }
    }
  }
}
```

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](https://radicale.org/) (plain `http://`, no TLS needed for local use).

## Tool surface

**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.

### The timezone rule (the whole point)

Every event is stored zoned to `CAL_DEFAULT_TZ`.

- A **naive** datetime (`2026-06-30T21:00`) is assumed to be wall time in that zone,
  and the tool response says so (`"assumed Pacific/Auckland wall time"`).
- An **offset-qualified** datetime (`…+12:00`) is honoured as an instant and
  re-expressed in the zone — same wall clock when the offset matches, a correct
  conversion otherwise.
- A **date-only** value (`2026-06-30`) is an all-day event.

## Develop

```bash
uv sync                 # install deps + dev tools
uv run ruff check       # lint
uv run pytest           # unit tests (no server required)
```

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.

## License

[MIT](https://github.com/limey/cal-scheduler-mcp/blob/main/LICENSE) © 2026 Robert Clark
caldavcalendaricalmcpscheduling

What people ask about cal-scheduler-mcp

What is limey/cal-scheduler-mcp?

+

limey/cal-scheduler-mcp is mcp servers for the Claude AI ecosystem. A timezone-correct CalDAV scheduling MCP server It has 0 GitHub stars and was last updated today.

How do I install cal-scheduler-mcp?

+

You can install cal-scheduler-mcp by cloning the repository (https://github.com/limey/cal-scheduler-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is limey/cal-scheduler-mcp safe to use?

+

limey/cal-scheduler-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains limey/cal-scheduler-mcp?

+

limey/cal-scheduler-mcp is maintained by limey. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to cal-scheduler-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy cal-scheduler-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: limey/cal-scheduler-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/limey-cal-scheduler-mcp)](https://claudewave.com/repo/limey-cal-scheduler-mcp)
<a href="https://claudewave.com/repo/limey-cal-scheduler-mcp"><img src="https://claudewave.com/api/badge/limey-cal-scheduler-mcp" alt="Featured on ClaudeWave: limey/cal-scheduler-mcp" width="320" height="64" /></a>

More MCP Servers

cal-scheduler-mcp alternatives