Skip to main content
ClaudeWave

Model Context Protocol server for read-only iCloud Drive access: browse folders, search by filename, download files, and extract document text.

MCP ServersOfficial Registry0 stars0 forksPythonMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/11/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · -e
Claude Code CLI
claude mcp add icloud4u-mcp -- python -m -e
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "icloud4u-mcp": {
      "command": "python",
      "args": ["-m", "-e"],
      "env": {
        "ICLOUD_USERNAME": "<icloud_username>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install -e
Detected environment variables
ICLOUD_USERNAME
Use cases

MCP Servers overview

# icloud-docs-mcp

<!-- mcp-name: io.github.js713-lab/icloud-docs-mcp -->

Read-only [Model Context Protocol](https://modelcontextprotocol.io/) server for **iCloud Drive**.

Source: [js713-lab/icloud4u-mcp](https://github.com/js713-lab/icloud4u-mcp). The installable package and CLI are named `icloud-docs-mcp`.

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`](https://github.com/picklepete/pyicloud) library. Apple can change endpoints without notice.

## What it is not

- Not Mail, Calendar, Contacts, or Notes
- Not a hosted / HTTP MCP (it runs locally over stdio)
- Not a 2FA prompt inside the model session
- Not upload, rename, or delete

## 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](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:

```bash
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:

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

Or, once the package is on PyPI:

```bash
pip install icloud-docs-mcp
```

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

```bash
cp .env.example .env
```

## Login (required once)

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

```bash
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.

```bash
icloud-docs-mcp status
```

## Tools

| Tool | Purpose |
|------|---------|
| `status` | Session health. Returns the Apple ID and cache paths, never a password. |
| `list_folder` | One directory. Empty path is Drive root (or `ICLOUD_ROOT`). |
| `search` | Filename/path query, optional `ext`, capped results. |
| `download` | Copy Drive files to the local cache. Returns paths, not bytes. |
| `read_text` | Download 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

| Variable | Required | Meaning |
|----------|----------|---------|
| `ICLOUD_USERNAME` | yes | Apple ID. No default. |
| `ICLOUD_PASSWORD` | no | Login CLI prompts if unset. Avoid putting this in the MCP env. |
| `ICLOUD_SESSION_DIR` | no | Cookiejar directory override. |
| `ICLOUD_DOWNLOAD_DIR` | no | Local download cache. |
| `ICLOUD_ROOT` | no | Drive folder prefix; all tools are scoped under it. |

## MCP clients

Default command (no args) speaks MCP on stdio:

```bash
icloud-docs-mcp
```

### Grok

```toml
[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

```json
{
  "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:

```bash
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](PUBLISH.md).

## Development

```bash
pip install -e ".[dev]"
pytest
```

Tests mock Apple. CI must never log into iCloud. See [CONTRIBUTING.md](CONTRIBUTING.md).

## License

MIT. Security reports: [SECURITY.md](SECURITY.md).

What people ask about icloud4u-mcp

What is js713-lab/icloud4u-mcp?

+

js713-lab/icloud4u-mcp is mcp servers for the Claude AI ecosystem. Model Context Protocol server for read-only iCloud Drive access: browse folders, search by filename, download files, and extract document text. It has 0 GitHub stars and its last recorded update is dated 2026-09-10.

How do I install icloud4u-mcp?

+

You can install icloud4u-mcp by cloning the repository (https://github.com/js713-lab/icloud4u-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is js713-lab/icloud4u-mcp safe to use?

+

Our security agent has analyzed js713-lab/icloud4u-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains js713-lab/icloud4u-mcp?

+

js713-lab/icloud4u-mcp is maintained by js713-lab. The last recorded GitHub activity is dated 2026-09-10, with 0 open issues.

Are there alternatives to icloud4u-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy icloud4u-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: js713-lab/icloud4u-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/js713-lab-icloud4u-mcp)](https://claudewave.com/repo/js713-lab-icloud4u-mcp)
<a href="https://claudewave.com/repo/js713-lab-icloud4u-mcp"><img src="https://claudewave.com/api/badge/js713-lab-icloud4u-mcp" alt="Featured on ClaudeWave: js713-lab/icloud4u-mcp" width="320" height="64" /></a>

More MCP Servers

icloud4u-mcp alternatives