DAV

v3.0.6Communicationstable

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.

ai-agentscaldavcalendarcarddavclaude
Share:
20
Stars
0
Downloads
0
Weekly
0/5

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

Orchestrate calendars, contacts, and task lists via CalDAV/CardDAV standards.
AI-manage scheduling and contact information across Nextcloud, Fastmail, and compatible servers.
PhilflowIO

Maintainer

LicenseMIT License
Languagejavascript
Versionv3.0.6
UpdatedMay 20, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y dav-mcp

Manual Installation

npx -y dav-mcp

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

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
1

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.

2

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"
      }
    }
  }
}
3

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"
      }
    }
  }
}
4

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.

5

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=8080

DAV 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.

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.

Quick Config Preview

{ "mcpServers": { "dav": { "command": "npx", "args": ["-y", "dav-mcp"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

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.

33,000+ ServersFree & Open SourceStep-by-Step Guides