MCP Catalogs
Home

caldav-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

caldav-mcp
by dominik1001
filesystem
by modelcontextprotocol
Stars★ 69★ 85,748
30d uses
Score4677
Official
Categories
ProductivityCommunication
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

caldav-mcp · Summary

A CalDAV MCP server enabling AI assistants to manage calendar events via CalDAV protocols.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

caldav-mcp · Use cases

  • AI assistants managing user schedules across CalDAV compatible calendars
  • Automating event creation based on AI analysis
  • Integration with calendar-based workflow automation

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

caldav-mcp · Install

Install via npm: npm install caldav-mcp

Add to Claude Desktop config:

{
  "mcpServers": {
    "calendar": {
      "command": "npx",
      "args": [
        "caldav-mcp"
      ],
      "env": {
        "CALDAV_BASE_URL": "<CalDAV server URL>",
        "CALDAV_USERNAME": "<CalDAV username>",
        "CALDAV_PASSWORD": "<CalDAV password>"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.