feat(skill): add /add-caldav-tool#2530
Open
cfis wants to merge 1 commit into
Open
Conversation
Generic CalDAV calendar MCP tool (Nextcloud / Fastmail / iCloud / Radicale / etc.) using the caldav-mcp npm package. Same OneCLI stub pattern as /add-gcal-tool: container env carries placeholder credentials, OneCLI gateway replaces the Authorization header with the real Basic-auth value at proxy time. Tools surfaced: list-calendars, list-events, create-event (with RRULE), update-event, delete-event. Search and free/busy are not in caldav-mcp — agent substitutes by widening list-events. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Type of Change
Description
What. A generic CalDAV calendar skill for Nextcloud, Fastmail, iCloud, Radicale, and anything else that speaks CalDAV with HTTP Basic auth. Mirrors `/add-gcal-tool`'s OneCLI stub-credential pattern, applied to Basic auth instead of OAuth Bearer.
Why. Google Calendar deprecated CalDAV Basic auth in 2024, so `/add-gcal-tool` only covers Google. There's no upstream path for everyone else self-hosting Nextcloud or using Fastmail / iCloud calendars. CalDAV's Authorization header is exactly the shape OneCLI's `--header-name Authorization --value-format 'Basic {value}'` rule is designed to inject — so the same no-raw-creds-in-container invariant from CHANGELOG 2.0.0 applies cleanly.
How it works.
Tools surfaced as `mcp__caldav__`: `list-calendars`, `list-events`, `create-event` (with RRULE), `update-event`, `delete-event`. Free/busy and search are not in the package — the agent substitutes by widening the `list-events` window.
How it was tested. Live end-to-end against Nextcloud:
Usage. `/add-caldav-tool` walks the operator through:
For Skills