cloud-connectors
Provides tools for iCloud Mail via IMAP/SMTP and iCloud Drive via the local sync folder.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cloud-connectorsshow my recent emails from Outlook"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
cloud-connectors
Monorepo of MCP connectors for personal cloud services, packaged as one-click Claude Desktop extensions (.mcpb). Built for eventual marketplace publishing: each connector ships separately with its own credential model and privacy story; shared plumbing lives in a core package.
Packages
Package | What | Auth |
| — | |
Personal Microsoft Account: Outlook Mail + OneDrive via Microsoft Graph (19 tools) | OAuth 2.0 + PKCE, tokens in DPAPI/Keychain | |
iCloud: Mail via IMAP/SMTP + iCloud Drive via the local sync folder (17 tools) | Apple app-specific password (stored in OS keychain by Claude Desktop, |
Related MCP server: fastmail-mcp
Build & pack
$env:PATH = "C:\tools\nodejs;$env:PATH"
npm install # workspace install at repo root
npm run build # core -> windows-live -> icloud, deterministic order
node scripts/pack-mcpb.mjs windows-live-connector # -> dist-bundle/windows-live-connector-<ver>.mcpb
node scripts/pack-mcpb.mjs icloud-connector # -> dist-bundle/icloud-connector-<ver>.mcpbscripts/pack-mcpb.mjs exists because npm workspaces hoist dependencies to the root node_modules (and symlink core), which would break mcpb pack's self-contained-bundle assumption. It stages the target package with a real npm install --omit=dev (core injected as a tarball) and packs from the staging dir.
Bundles install by double-clicking the .mcpb / dragging it onto Claude Desktop (Settings → Extensions). Per-connector setup (Entra app registration, Apple app-specific password) is documented in each package's README/manifest description.
Note: a .mcpb built on Windows carries Windows-only native bindings for the secure token store (keytar); on macOS both connectors fall back to permissions-restricted plaintext storage with a logged warning. Repack on a Mac for Keychain-backed storage there.
History
Grew out of the standalone project where I tinkered with windows live connectivity because I live in that eco system in addition to Google and Apple.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP connector for iMessage & Contacts via a local Mac agent + Vercel relay
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
Authenticated, user-scoped MCP connectors for 30+ business systems.
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA modular collection of MCP servers for automating virtual secretary tasks within Microsoft Outlook, including email management, calendar operations, contacts, tasks, and mailbox settings through Microsoft Graph API.5MIT
- AlicenseNot gradedqualityBmaintenanceUnified MCP server for Fastmail email (JMAP), calendar (CalDAV), and contacts (CardDAV). Enables sending emails, managing events, and syncing contacts through natural language.MIT
- AlicenseNot gradedqualityBmaintenanceA collection of MCP servers for Apple macOS apps (Mail, Contacts, Notes, Memory, Messages, Calendar, Reminders) enabling AI assistants to read, search, create, and update data via JXA, SQLite, and EventKit.760 npmMIT
- FlicenseNot gradedqualityDmaintenanceRemote MCP server for Microsoft Graph with delegated OAuth support, enabling interaction with Microsoft 365 services like mail, calendar, OneDrive, SharePoint, Teams, and more via natural language.-