renfield-mcp-calendar
Allows interaction with Google Calendar API for managing events and calendars via OAuth2 authentication.
Allows interaction with CalDAV calendar in Nextcloud, enabling event management.
Allows interaction with CalDAV calendar in ownCloud, enabling event management.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@renfield-mcp-calendarlist my events for tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
renfield-mcp-calendar
Unified MCP server for calendar access — connect Exchange (EWS), Google Calendar, and CalDAV (Nextcloud, ownCloud, Radicale) through a single Model Context Protocol interface.
Features
Multi-calendar — Configure multiple calendar accounts via YAML, query them individually or all at once
Cross-calendar merge —
list_eventswithout a calendar parameter returns events from ALL calendars sorted chronologicallyThree backends — Exchange Web Services (EWS), Google Calendar API, CalDAV
No passwords in config — Credentials referenced via environment variable names
Lazy connections — Backend clients are initialized on first use, not at startup
Async-ready — All blocking I/O wrapped with
asyncio.run_in_executorGoogle OAuth2 helper — Built-in
--auth googleCLI for initial token setup
Related MCP server: Apple Calendar MCP Server
Installation
pip install renfield-mcp-calendarOr directly from GitHub:
pip install "renfield-mcp-calendar @ https://github.com/ebongard/renfield-mcp-calendar/archive/refs/heads/main.tar.gz"Configuration
Set CALENDAR_CONFIG to point to your YAML config file (default: /config/calendar_accounts.yaml).
Example calendar_accounts.yaml
calendars:
# Exchange 2019 (on-premise, direct EWS endpoint)
- name: work
label: "Work Calendar"
type: ews
ews_url: "https://exchange.example.com/EWS/Exchange.asmx"
username_env: CALENDAR_WORK_USERNAME
password_env: CALENDAR_WORK_PASSWORD
# Google Calendar (OAuth2 Desktop Flow)
- name: family
label: "Family Calendar"
type: google
calendar_id: "primary"
credentials_file: "/config/google_calendar_credentials.json"
token_file: "/data/google_calendar_token.json"
# Nextcloud / CalDAV
- name: club
label: "Club Calendar"
type: caldav
url: "https://nextcloud.example.com/remote.php/dav/calendars/user/club/"
username_env: CALENDAR_CLUB_USERNAME
password_env: CALENDAR_CLUB_PASSWORDSecurity: Passwords and tokens are never stored in the YAML file — use *_env fields to reference environment variable names.
Backend-specific notes
Backend | Library | Auth | Notes |
EWS | NTLM/Basic | Direct EWS URL, no Autodiscover needed | |
OAuth2 Desktop Flow | Token auto-refresh, one-time browser auth | ||
CalDAV | Basic Auth | Works with Nextcloud, ownCloud, Radicale, etc. |
Google Calendar setup (one-time)
Google Cloud Console → Create project → Enable Google Calendar API
Create OAuth2 credentials (Desktop App) → Download
credentials.jsonPlace as
google_calendar_credentials.jsonin your config directoryRun the auth flow:
python -m renfield_mcp_calendar --auth google --calendar familyComplete the browser-based authorization — token is saved automatically
MCP Tools
Tool | Parameters | Description |
| — | List all configured calendar accounts |
|
| Events from one or all calendars. Empty |
|
| Create a new event |
|
| Update specific fields of an event |
|
| Delete an event |
|
| Get a single event with full details |
Example queries (via LLM)
"Was steht heute an?" →
list_events()(all calendars, today)"Was steht im Firmenkalender diese Woche?" →
list_events(calendar="work", start="...", end="...")"Erstelle einen Familientermin morgen um 14 Uhr: Zahnarzt" →
create_event(calendar="family", ...)"Bin ich morgen Nachmittag frei?" →
list_events(start="...", end="...")
Usage
# Run as MCP server (stdio transport)
python -m renfield_mcp_calendar
# Or via entry point
renfield-mcp-calendar
# Google OAuth2 setup (one-time)
python -m renfield_mcp_calendar --auth google --calendar familyClaude Desktop / MCP client config
{
"mcpServers": {
"calendar": {
"command": "python",
"args": ["-m", "renfield_mcp_calendar"],
"env": {
"CALENDAR_CONFIG": "/path/to/calendar_accounts.yaml",
"CALENDAR_WORK_USERNAME": "user@example.com",
"CALENDAR_WORK_PASSWORD": "secret"
}
}
}
}Development
# Install with dev dependencies
pip install -e ".[dev]"
# Run tests (29 tests)
pytest tests/ -vLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
A MCP server that works with Google Calendar to manage event listing, reading, and updates.
GDPR-compliant calendar access for AI assistants: read, create, edit, RSVP. Google, MS 365, Apple.
MCP server for Cronofy — read calendars, events and free/busy, and create, update or delete events.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceProvider-agnostic CalDAV calendar MCP server that connects any CalDAV calendar to AI assistants, enabling calendar operations like listing, creating, updating, and deleting events.AGPL 3.0
- AlicenseNot gradedqualityFmaintenanceA comprehensive MCP server that provides AI assistants with natural language access to Apple Calendar, enabling reading, searching, creating, and managing calendar events.3MIT
- FlicenseNot gradedqualityCmaintenanceA minimal MCP server for Google Calendar using OAuth 2.0, enabling calendar management, event CRUD, sharing, and push notifications via natural language.-
- AlicenseNot gradedqualityAmaintenanceMCP server for Google Calendar that enables managing calendar events, scheduling meetings, RSVPing, and checking availability through natural language.21 npm1MIT