Back to Browse

Icloud4u MCP Server

Developer ToolsUse Caution4.4MCP RegistryLocal
Free

Server data from the Official MCP Registry

Read-only MCP server for listing, searching, downloading, and reading iCloud Drive documents.

About

Read-only MCP server for listing, searching, downloading, and reading iCloud Drive documents.

Security Report

4.4
Use Caution4.4High Risk

This is a well-structured, read-only MCP server for iCloud Drive with appropriate security controls. Authentication is properly handled via pyicloud with session persistence, sensitive credentials are not hardcoded, and input validation is present. The codebase uses good error handling patterns and avoids dangerous operations. Minor code quality observations exist but do not constitute security vulnerabilities. Supply chain analysis found 10 known vulnerabilities in dependencies (0 critical, 5 high severity).

7 files analyzed · 14 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

What You'll Need

Set these up before or after installing:

Apple ID. There is no default.Optional

Environment variable: ICLOUD_USERNAME

Optional Drive folder prefix. All tools are scoped under it.Optional

Environment variable: ICLOUD_ROOT

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-js713-lab-icloud-docs-mcp": {
      "env": {
        "ICLOUD_ROOT": "your-icloud-root-here",
        "ICLOUD_USERNAME": "your-icloud-username-here"
      },
      "args": [
        "icloud-docs-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

icloud-docs-mcp

Your agent can find a PDF in iCloud Drive and quote page 3.

Read-only Model Context Protocol server for iCloud Drive. Linux, Windows, or macOS — no Mac, no Spotlight, no ~/Library required.

Source: js713-lab/icloud4u-mcp. The installable package and CLI are named icloud-docs-mcp.

Mail / Calendar / Contacts MCPs already exist. Drive is still the weak spot in the Apple stack if you are not on a Mac. That is the wedge: cross-platform Drive without needing a Mac. It is a utility, not a category.

It lists a folder, searches by filename, downloads files, and extracts text from common documents. There is no default Apple ID, no bundled documents, and no company-specific search logic.

Apple does not publish a third-party iCloud Drive API. This server uses the unofficial pyicloud library. You do not own that pipe. Apple can change an endpoint and this tool is down until someone reverse-engineers it again. Do not promise reliability this repo does not control.

Example:

Find the invoice in iCloud Drive and quote page 3.

What it is not

  • Not Mail, Calendar, Contacts, or Notes
  • Not a macOS-local Drive MCP (those already use Spotlight / ~/Library)
  • Not a hosted / HTTP MCP (it runs locally over stdio)
  • Not a 2FA prompt inside the model session
  • Not upload, rename, or delete
  • Not a reliability SLA. The unofficial client will break.

Disclaimer

This is not an Apple product. Apple does not publish a third-party iCloud Drive API. The unofficial client can break when Apple changes endpoints, and using it may conflict with Apple's terms. Use it at your own risk, locally, on an account you control.

Do not expose this server on the network. Cookiejar files are login credentials: never commit them, never paste them into issues, and never check in .env. See SECURITY.md.

The status tool returns the configured Apple ID and local cache paths so a client can tell whether login succeeded. It never returns a password.

Install

Python 3.10+

From this repository:

git clone https://github.com/js713-lab/icloud4u-mcp.git
cd icloud4u-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .

Install from GitHub:

pip install git+https://github.com/js713-lab/icloud4u-mcp.git

Or, once the package is on PyPI:

pip install icloud-docs-mcp

Copy .env.example to .env and set ICLOUD_USERNAME to your Apple ID. .env is gitignored.

cp .env.example .env

Login (required once)

The MCP process will not wait for a 2FA code. Log in in a real terminal:

export ICLOUD_USERNAME='you@example.com'
icloud-docs-mcp login

You will be prompted for the password and, if Apple asks, a 6-digit device code. A trusted cookiejar is stored under:

$XDG_DATA_HOME/icloud-docs-mcp/<sanitized-username>/

(~/.local/share/icloud-docs-mcp/... if XDG_DATA_HOME is unset.)

If a tool returns NEED_LOGIN or NEED_2FA, run icloud-docs-mcp login again, then retry.

icloud-docs-mcp status

Tools

ToolPurpose
statusSession health. Returns the Apple ID and cache paths, never a password.
list_folderOne directory. Empty path is Drive root (or ICLOUD_ROOT).
searchFilename/path query, optional ext, capped results.
downloadCopy Drive files to the local cache. Returns paths, not bytes.
read_textDownload if needed; extract text from pdf, docx, xlsx, txt, csv.

Search and read_text are capped so MCP clients with a small result limit are not flooded.

Environment

VariableRequiredMeaning
ICLOUD_USERNAMEyesApple ID. No default.
ICLOUD_PASSWORDnoLogin CLI prompts if unset. Avoid putting this in the MCP env.
ICLOUD_SESSION_DIRnoCookiejar directory override.
ICLOUD_DOWNLOAD_DIRnoLocal download cache.
ICLOUD_ROOTnoDrive folder prefix; all tools are scoped under it.

MCP clients

Default command (no args) speaks MCP on stdio:

icloud-docs-mcp

Grok

[mcp_servers.icloud_docs]
command = "icloud-docs-mcp"
env = { ICLOUD_USERNAME = "${ICLOUD_USERNAME}" }
startup_timeout_sec = 45
tool_timeout_sec = 180
tool_timeouts = { search = 180, download = 300, read_text = 180 }

Claude Desktop / Cursor

{
  "mcpServers": {
    "icloud-docs": {
      "command": "icloud-docs-mcp",
      "env": {
        "ICLOUD_USERNAME": "<your-apple-id>"
      }
    }
  }
}

Use an absolute path to the venv binary if the client does not inherit your PATH.

Grok can also load .mcp.json from this repo:

grok plugin install js713-lab/icloud4u-mcp --trust

That only starts the server. You still need pip install icloud-docs-mcp (or pip install -e .) and icloud-docs-mcp login on the machine.

To publish a release to PyPI and the official MCP Registry, see PUBLISH.md.

Development

pip install -e ".[dev]"
pytest

Tests mock Apple. CI must never log into iCloud. See CONTRIBUTING.md.

License

MIT. Security reports: SECURITY.md.

Reviews

No reviews yet

Be the first to review this server!