Best for
- AI assistants that need calendar integration
- Users with CalDAV-compatible servers
- Scenarios requiring task management
This server provides AI assistants with the ability to access CalDAV calendars and tasks via MCP. It is feature-rich but requires user-provided CalDAV credentials, posing some security risks.
CalDAV MCP Server is a Model Context Protocol (MCP) server that exposes calendar operations (such as listing, creating, updating, and deleting events) as tools for AI assistants. It supports CalDAV servers, allowing AI assistants to manage calendar events and tasks (VTODO).
Add the following configuration to your MCP client:
{
"mcpServers": {
"calendar": {
"command": "npx",
"args": ["caldav-mcp"],
"env": {
"CALDAV_BASE_URL": "<CalDAV server URL>",
"CALDAV_USERNAME": "<CalDAV username>",
"CALDAV_PASSWORD": "<CalDAV password>"
}
}
}
}{
"mcpServers": {
"calendar": {
"command": "npx",
"args": ["caldav-mcp"],
"env": {
"CALDAV_BASE_URL": "<CalDAV server URL>",
"CALDAV_USERNAME": "<CalDAV username>",
"CALDAV_PASSWORD": "<CalDAV password>"
}
}
}
}