DAV
Turn any calendar, contact book, or task list into an AI-orchestrated system. Platform-independent via CalDAV/CardDAV works with Nextcloud, Baikal, Fastmail, and any standards-compliant DAV server. 26 tools with field-agnostic updates.
What is DAV?
DAV is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to turn any calendar, contact book, or task list into an ai-orchestrated system. platform-independent via caldav/carddav works with nextcloud, baikal, fastmail, and any standards-compliant dav server. 26...
Turn any calendar, contact book, or task list into an AI-orchestrated system. Platform-independent via CalDAV/CardDAV works with Nextcloud, Baikal, Fastmail, and any standards-compliant DAV server. 26 tools with field-agnostic updates.
This server falls under the Communication and Business Applications categories on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- Turn any calendar, contact book, or task list into an AI-orc
Use Cases
Maintainer
Works with
Installation
NPM
npx -y dav-mcpManual Installation
npx -y dav-mcpConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use DAV
dav-mcp is a CalDAV/CardDAV MCP server that exposes 26 tools covering calendars, contacts, and tasks, letting AI assistants directly create, read, update, and delete data on any standards-compliant DAV server including Nextcloud, Baikal, Fastmail, Apple iCloud, and Google Calendar via OAuth2. Because it uses open DAV protocols rather than proprietary APIs, it works with self-hosted and commercial providers alike without vendor lock-in. Teams and individuals use it to let Claude manage scheduling, draft meeting invites, query contacts, and track tasks through natural language.
Prerequisites
- Node.js 18 or later installed
- Access to a CalDAV/CardDAV server (Nextcloud, Baikal, Fastmail, iCloud, or similar)
- CalDAV server URL, username, and app password (or Google OAuth2 credentials for Google Calendar)
- An MCP-compatible client such as Claude Desktop or n8n
Gather your CalDAV/CardDAV server credentials
You need three pieces of information: the server base URL (e.g., https://nextcloud.example.com/remote.php/dav), your DAV username, and your password or app-specific password. For Nextcloud, generate an app password under Settings → Security to avoid using your main account password.
Add dav-mcp to your Claude Desktop configuration
Open your Claude Desktop config file and add a dav-mcp entry under mcpServers. Set the three required environment variables: CALDAV_SERVER_URL, CALDAV_USERNAME, and CALDAV_PASSWORD.
{
"mcpServers": {
"dav-mcp": {
"command": "npx",
"args": ["-y", "dav-mcp"],
"env": {
"CALDAV_SERVER_URL": "https://nextcloud.example.com/remote.php/dav",
"CALDAV_USERNAME": "your_username",
"CALDAV_PASSWORD": "your_app_password"
}
}
}
}For Google Calendar: configure OAuth2 instead
Google Calendar requires OAuth2 rather than basic auth. Set AUTH_METHOD to 'OAuth' and provide your Google OAuth2 client credentials and a refresh token. Obtain credentials from Google Cloud Console under APIs & Services → Credentials.
{
"mcpServers": {
"dav-mcp": {
"command": "npx",
"args": ["-y", "dav-mcp"],
"env": {
"AUTH_METHOD": "OAuth",
"GOOGLE_USER": "[email protected]",
"GOOGLE_CLIENT_ID": "your_client_id.apps.googleusercontent.com",
"GOOGLE_CLIENT_SECRET": "your_client_secret",
"GOOGLE_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}Restart Claude Desktop and verify calendar access
Quit and reopen Claude Desktop. Ask Claude to list your calendars. It should call list_calendars and return the calendar names from your DAV server. If you see calendars listed, the connection is working.
For n8n or HTTP clients: run in HTTP server mode
If you want to use dav-mcp with n8n or a web-based MCP client, start it in HTTP server mode. The server binds to a port and accepts HTTP/SSE connections instead of stdio.
CALDAV_SERVER_URL=https://dav.example.com \
CALDAV_USERNAME=user \
CALDAV_PASSWORD=pass \
BEARER_TOKEN=mysecrettoken \
npx dav-mcp --http --port=8080DAV Examples
Client configuration
Claude Desktop configuration for a Nextcloud CalDAV/CardDAV server using basic auth.
{
"mcpServers": {
"dav-mcp": {
"command": "npx",
"args": ["-y", "dav-mcp"],
"env": {
"CALDAV_SERVER_URL": "https://nextcloud.example.com/remote.php/dav",
"CALDAV_USERNAME": "alice",
"CALDAV_PASSWORD": "app-password-from-nextcloud"
}
}
}
}Prompts to try
Natural language prompts that map to the 26 CalDAV/CardDAV/VTODO tools exposed by dav-mcp.
- "List all my calendars and show this week's events"
- "Create a team meeting tomorrow at 2 PM for 1 hour titled 'Sprint Review'"
- "Find all contacts who work at Acme Corp"
- "Show me all overdue high-priority tasks"
- "Add a new contact: Jane Smith, [email protected], +1-555-1234"
- "Delete the calendar event titled 'Old Meeting' from my Work calendar"Troubleshooting DAV
Authentication fails with 401 Unauthorized
Many CalDAV servers (especially Nextcloud) require app-specific passwords rather than your main account password. Generate one in your Nextcloud settings under Settings → Security → App passwords and use that as CALDAV_PASSWORD.
list_calendars returns an empty list
The CALDAV_SERVER_URL may be pointing to the wrong path. For Nextcloud, the correct path is /remote.php/dav/calendars/<username>/ or /remote.php/dav. For Baikal, it is typically /dav.php/. Check your server's documentation for the correct CalDAV base URL.
Google Calendar OAuth2 fails with invalid_grant
The GOOGLE_REFRESH_TOKEN has expired or been revoked. Go to your Google account's security settings, revoke the old OAuth permission, and repeat the OAuth2 flow to obtain a new refresh token. Ensure the Google Calendar API is enabled in your Google Cloud project.
Frequently Asked Questions about DAV
What is DAV?
DAV is a Model Context Protocol (MCP) server that turn any calendar, contact book, or task list into an ai-orchestrated system. platform-independent via caldav/carddav works with nextcloud, baikal, fastmail, and any standards-compliant dav server. 26 tools with field-agnostic updates. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install DAV?
Install via npm with the command: npx -y dav-mcp. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).
Which AI clients work with DAV?
DAV works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is DAV free to use?
Yes, DAV is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.
DAV Alternatives — Similar Communication Servers
Looking for alternatives to DAV? Here are other popular communication servers you can use with Claude, Cursor, and VS Code.
Slack
★ 86.1kEnables interaction with Slack workspaces through comprehensive channel management, messaging, user management, file uploads, and Block Kit formatting. Features secure credential storage via macOS Keychain and supports all major Slack operations incl
LibreChat
★ 37.3kEnhanced ChatGPT Clone: Features Agents, MCP, DeepSeek, Anthropic, AWS, OpenAI, Responses API, Azure, Groq, o1, GPT-5, Mistral, OpenRouter, Vertex AI, Gemini, Artifacts, AI model switching, message search, Code Interpreter, langchain, DALL-E-3, OpenA
Note Gen
★ 11.9kA cross-platform Markdown AI note-taking software.
DeepChat
★ 5.8k🐬DeepChat - A smart assistant that connects powerful AI to your personal world
WhatsApp MCP
★ 5.7kConnects AI assistants to the official Meta WhatsApp Cloud API for managing conversations and sending various message types through natural language. It provides tools for media management, template messages, and real-time webhook processing without
Apple
★ 3.1kEnables interaction with Apple apps like Messages, Notes, and Contacts through the MCP protocol to send messages, search, and open app content using natural language.
Browse More Communication MCP Servers
Explore all communication servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up DAV in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use DAV?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.