Nextcloud CalDAV Server
FreeNot checkedAn MCP server that lets Claude create calendar events and tasks in Nextcloud via CalDAV.
About
An MCP server that lets Claude create calendar events and tasks in Nextcloud via CalDAV.
README
An MCP (Model Context Protocol) server that lets Claude create calendar events and tasks in Nextcloud via CalDAV.
Tools exposed:
| Tool | Description |
|---|---|
create_event |
Writes a VEVENT into a Nextcloud Calendar |
create_todo |
Writes a VTODO into Nextcloud Tasks |
Stack: Python 3 · mcp SDK 1.x · caldav · uvicorn · Tailscale Funnel (HTTPS)
Prerequisites
Install on the Proxmox host (Debian/Ubuntu):
apt update
apt install -y python3 python3-venv python3-pip git
No nginx, no certbot needed — Tailscale handles TLS automatically.
1 — Deploy the server files
# Files already live in /root/calendar_todo_mcp
# Copy the service file to systemd
mkdir -p /root/calendar_todo_mcp
cp server.py requirements.txt calendar_todo_mcp.service /root/calendar_todo_mcp/
2 — Python virtual environment
python3 -m venv /root/calendar_todo_mcp/venv
/root/calendar_todo_mcp/venv/bin/pip install --upgrade pip
/root/calendar_todo_mcp/venv/bin/pip install -r /root/calendar_todo_mcp/requirements.txt
3 — Configure .env
cp /root/calendar_todo_mcp/.env.example /root/calendar_todo_mcp/.env
nano /root/calendar_todo_mcp/.env # or your preferred editor
chmod 600 /root/calendar_todo_mcp/.env
Required values to fill in:
| Variable | Example | Notes |
|---|---|---|
NEXTCLOUD_URL |
https://cloud.example.com |
No trailing slash |
NEXTCLOUD_USER |
youruser |
Your login username |
NEXTCLOUD_APP_PASSWORD |
xxxx-xxxx-xxxx |
See step below |
CALENDAR_NAME |
Personal |
Exact display name in Nextcloud Calendar |
TASKS_CALENDAR_NAME |
Tasks |
Exact display name in Nextcloud Tasks |
OAUTH_CLIENT_ID |
calendar-todo-client |
Any identifier you choose |
OAUTH_CLIENT_SECRET |
(generated) | Run python3 -c "import secrets; print(secrets.token_urlsafe(32))" |
RESOURCE_SERVER_URL |
https://mymachine.tail-abc123.ts.net |
Your Tailscale Funnel URL (see step 4) |
Create a Nextcloud App Password
- Log into Nextcloud → Settings → Security
- Scroll to App passwords → enter a name (e.g.
mcp-server) → click Generate new app password - Copy the password into
NEXTCLOUD_APP_PASSWORD
4 — Tailscale einrichten
Tailscale installieren
curl -fsSL https://tailscale.com/install.sh | sh
tailscale up
Anmelden mit deinem Tailscale-Account im Browser, wenn der Link erscheint.
MagicDNS und HTTPS in der Tailscale-Konsole aktivieren
- Öffne login.tailscale.com/admin/dns
- MagicDNS aktivieren
- HTTPS Certificates aktivieren
Funnel aktivieren (öffentlich erreichbar via HTTPS)
Tailscale Funnel macht den Server über das öffentliche Internet erreichbar — nötig, damit Claude.ai (Cloud) den MCP-Server erreichen kann.
Der mitgelieferte tailscale_funnel.service startet den Funnel automatisch beim Booten (siehe Schritt 5). Zum Testen vorab:
tailscale funnel 8000
Danach die URL deines Servers ermitteln:
tailscale funnel status
# Ausgabe z.B.: https://mymachine.tail-abc123.ts.net/ proxies to http://127.0.0.1:8000
Diesen HTTPS-Hostnamen (z.B. https://mymachine.tail-abc123.ts.net) als
RESOURCE_SERVER_URL in die .env eintragen.
Nur im Tailnet (kein öffentlicher Zugriff)? Wenn Claude Desktop auf einem Gerät im selben Tailnet läuft, reicht
tailscale serve 8000stattfunnel.
5 — Install and start the systemd services
Both service files need to be copied and enabled: the MCP server and the Tailscale Funnel.
# MCP server
cp /root/calendar_todo_mcp/calendar_todo_mcp.service \
/etc/systemd/system/calendar-todo-mcp.service
# Tailscale Funnel (keeps the funnel running across reboots)
cp /root/calendar_todo_mcp/tailscale_funnel.service \
/etc/systemd/system/tailscale-funnel-mcp.service
systemctl daemon-reload
systemctl enable --now calendar-todo-mcp
systemctl enable --now tailscale-funnel-mcp
# Verify both are running
systemctl status calendar-todo-mcp
systemctl status tailscale-funnel-mcp
journalctl -u calendar-todo-mcp -f
6 — Smoke test
Ersetze mymachine.tail-abc123.ts.net mit deiner tatsächlichen Tailscale-URL:
# OAuth-Metadaten-Endpoint — sollte JSON mit issuer/scopes zurückgeben
curl https://mymachine.tail-abc123.ts.net/.well-known/oauth-protected-resource \
| python3 -m json.tool
# MCP-Endpoint ohne Token — sollte 401 zurückgeben
curl -s -o /dev/null -w "%{http_code}" \
https://mymachine.tail-abc123.ts.net/mcp
7 — Connect Claude
MCP-Server in Claude.ai oder claude_desktop_config.json eintragen:
{
"mcpServers": {
"calendar-todo": {
"url": "https://mymachine.tail-abc123.ts.net/mcp"
}
}
}
Claude startet beim ersten Verbinden automatisch den OAuth-Flow (Browser-Redirect). Danach ist keine weitere Konfiguration nötig.
Claude kann dann Dinge sagen wie:
"Trag mir einen Zahnarzttermin am 3. April um 10 Uhr für 45 Minuten ein" "Erinnerung: Bank anrufen — fällig morgen"
Operations
# View live logs
journalctl -u calendar-todo-mcp -f
# Restart after config changes
systemctl restart calendar-todo-mcp
# Stop / disable
systemctl stop calendar-todo-mcp
systemctl disable calendar-todo-mcp
Troubleshooting
| Problem | What to check |
|---|---|
401 Unauthorized |
OAuth-Flow noch nicht abgeschlossen — Claude erneut verbinden und Autorisierung im Browser bestätigen |
Calendar 'X' not found |
The CALENDAR_NAME / TASKS_CALENDAR_NAME must match the exact display name in Nextcloud |
CalDAV 401 |
App password entered correctly? User has CalDAV access enabled? |
Connection refused |
Is the service running? systemctl status calendar-todo-mcp |
Tailscale 502 Bad Gateway |
MCP server not running, or wrong PORT in .env |
| Funnel antwortet nicht | tailscale funnel status prüfen; ggf. tailscale funnel 8000 erneut ausführen |
| Tailscale HTTPS geht nicht | MagicDNS und HTTPS Certificates in der Tailscale-Admin-Console aktiviert? |
Installing Nextcloud CalDAV Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/eragooon/nextcloud_calendar_todo_mcpFAQ
Is Nextcloud CalDAV Server MCP free?
Yes, Nextcloud CalDAV Server MCP is free — one-click install via Unyly at no cost.
Does Nextcloud CalDAV Server need an API key?
No, Nextcloud CalDAV Server runs without API keys or environment variables.
Is Nextcloud CalDAV Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Nextcloud CalDAV Server in Claude Desktop, Claude Code or Cursor?
Open Nextcloud CalDAV Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Notion
Read and write pages in your workspace
by NotionLinear
Issues, cycles, triage — from Claude
by LinearGoogle Drive
Search and read your Drive files
by Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
by mindsdbfulcradynamics/fulcra-context-mcp
MCP server for accessing personal health and biometric data including sleep stages, heart rate, HRV, glucose, workouts, calendar, and location via the Fulcra Li
by fulcradynamicsaymericzip/intlayer
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, access to the docs.
by aymericziprinadelph/Agent-MCP
A framework for creating multi-agent systems using MCP for coordinated AI collaboration, featuring task management, shared context, and RAG capabilities.
by rinadelphWhenLabs-org/when
Developer toolkit: auto-detect stack for AI context files, catch port conflicts, validate .env schemas, spot docs drift, audit dependency licenses, and time cod
by WhenLabs-orgBeltran12138/wecom-docs-mcp-server
WeCom (Enterprise WeChat) document operations via MCP: create, read, and edit Docs and Smartsheets (9 tools). Fills the doc-CRUD gap — existing WeCom MCP server
by Beltran12138madbonez/caldav-mcp
Universal MCP server for CalDAV protocol integration. Works with any CalDAV-compatible calendar server including Yandex Calendar, Google Calendar (via CalDAV),
by madbonezCompare Nextcloud CalDAV Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All productivity MCPs
