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 "Install 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: Chronos MCP
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ebongard/renfield-mcp-calendar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server