Provides WebDAV file operations for services like Fastmail, allowing users to list files and folders, view file metadata, and navigate through their file storage hierarchy.
Enables access to Apple iCloud calendars (CalDAV), contacts (CardDAV), and potentially files, allowing users to list calendars, fetch events, manage contact address books, and retrieve contacts.
DAV MCP サーバー
MCP 経由でカレンダー、連絡先、ファイルにアクセスしましょう。
導入
このプロジェクトは、CalDAV、CardDAV、WebDAVサービスとの連携を可能にするモデルコンテキストプロトコル(MCP)サーバーです。環境変数で設定されたFastmailとApple iCloudアカウントの両方をサポートします。
設定
- 前提条件: Node.js がインストールされていることを確認してください。
- リポジトリのクローンを作成する: このリポジトリをローカル マシンにクローンします。
- 依存関係をインストールします。プロジェクト ディレクトリに移動して、次を実行します。これをグローバル コマンドとして公開または使用する場合、インストール後に
npm link
を実行するか、npm install -g .
でグローバルにインストールすることもできます (必要に応じて、package.json
グローバル インストール用に構成した後)。
環境変数の設定
DAV サービスに接続するには、アプリケーションの実行時に次の環境変数を設定する必要があります。
DAV_PROVIDER
: DAVサービスプロバイダを指定します。fastmailまたはicloud
(大文字と小文字は区別されませんfastmail
に設定してください。DAV_USERNAME
: サービスで使用するユーザー名 (例: Fastmail のメールアドレスや Apple ID)。DAV_PASSWORD
: サービス用のアプリ固有のパスワード。セキュリティのため、アプリ固有のパスワードの使用を強くお勧めします。
MCP構成
このサーバーを使用するには、MCP設定ファイルでmcpServer
として設定する必要があります。以下に例を示します。
利用可能なツール
構成が完了すると、この MCP サーバーは次のツールを提供します。
カレンダー(CalDAV)
get_my_calendars
: 利用可能なすべてのカレンダーを一覧表示します。get_calendar_events
: 指定されたカレンダーからイベントを取得します。オプションで開始日時と終了日時を指定して、特定の範囲内のイベントを絞り込むこともできます。
連絡先(CardDAV)
get_my_contact_lists
: すべての連絡先アドレス帳を一覧表示します。get_contacts_from_list
: 指定されたアドレス帳から連絡先を取得します。
ファイル(WebDAV - 主にFastmail用)
list_my_files_and_folders
: WebDAV ストレージ内の指定されたパス (デフォルトはルート) 内のファイルとフォルダーを一覧表示します。get_file_or_folder_details
: 指定されたファイルまたはフォルダーの URL のメタデータを取得します。
使用法
構成で MCP サーバーをセットアップした後、MCP クライアント内でサーバー定義と対話するコマンドまたは機能を使用して、カレンダー、連絡先、およびファイルを管理できます。
You must be authenticated.
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
ユーザーが Fastmail および Apple iCloud アカウントから CalDAV、CardDAV、WebDAV サービス (カレンダー、連絡先、ファイル) と対話できるようにするモデル コンテキスト プロトコル サーバー。
Related MCP Servers
- -securityAlicense-qualityA Model Context Protocol server that enables Claude Desktop and other MCP clients to interact with WebDAV file systems through natural language commands for CRUD operations.Last updated -91TypeScriptMIT License
UseGrant MCP Serverofficial
AsecurityAlicenseAqualityA Model Context Protocol server that provides tools for managing providers, clients, tenants, and access tokens through the UseGrant platform.Last updated -26116JavaScriptMIT License- AsecurityAlicenseAqualityA Model Context Protocol server providing utility tools for development and testing, offering functionalities like personalized greetings, random card drawing, and datetime formatting with an extensible architecture.Last updated -194642TypeScriptMIT License
- AsecurityAlicenseAqualityA Model Context Protocol server that provides tools for interacting with Gmail and Calendar APIs, enabling programmatic management of emails and calendar events.Last updated -87JavaScriptMIT License