# ZeroDrop (npm · zerodrop-mcp)

Disposable email inboxes for AI agents — OTPs and magic links auto-extracted. No signup needed.

- Trust score: 70/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `zerodrop-mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/dev-zerodrop-zerodrop-mcp/zerodrop-mcp.md), [page](https://verifymcp.io/servers/dev-zerodrop-zerodrop-mcp/zerodrop-mcp)

## Channel facts

- Registry: `npm`
- Package: `zerodrop-mcp`
- Version: `0.1.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 14 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 324 tokens (~108/item across 3 items; 3 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add dev-zerodrop-zerodrop-mcp -- npx -y zerodrop-mcp
```

### Codex

```bash
codex mcp add dev-zerodrop-zerodrop-mcp -- npx -y zerodrop-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev-zerodrop-zerodrop-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "zerodrop-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dev-zerodrop-zerodrop-mcp --command npx --arg -y --arg zerodrop-mcp
```

### Hermes

```yaml
mcp_servers:
  dev-zerodrop-zerodrop-mcp:
    command: "npx"
    args: ["-y", "zerodrop-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "dev-zerodrop-zerodrop-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "zerodrop-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 70, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 66, +61)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 5, −21)

- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Capabilities: pass → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 26, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (3)

### `generate_inbox` (~91 tokens)

Generate a disposable email inbox for testing signups, OTP verification, magic links, and password resets. Instant and local — no network request. Use the returned address wherever an email is required, then call wait_for_email to read what arrives. Free tier: 30-minute retention, no signup needed.

Input parameters:

- `prefix` (string): Optional prefix for the inbox name, e.g. your app or test name

### `wait_for_email` (~171 tokens)

Wait for an email to arrive in a ZeroDrop inbox and return it with the OTP and magic link already extracted — no parsing needed. Blocks until an email matching the filters arrives or the timeout is reached. Use after triggering a signup, login, or password-reset flow.

Input parameters:

- `from_contains` (string): Only match emails whose sender contains this text
- `inbox` (string, required): The inbox address (or name) returned by generate_inbox
- `require_magic_link` (boolean): Only match emails with an extracted magic link
- `require_otp` (boolean): Only match emails with an extracted OTP code
- `subject_contains` (string): Only match emails whose subject contains this text
- `timeout_seconds` (number): How long to wait before giving up (default 30, max 120)

### `check_inbox` (~62 tokens)

Check a ZeroDrop inbox right now without waiting. Returns the most recent emails with OTPs and magic links already extracted, or an empty list if nothing has arrived yet.

Input parameters:

- `inbox` (string, required): The inbox address (or name) returned by generate_inbox

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dev-zerodrop-zerodrop-mcp/zerodrop-mcp#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 66
- 2026-08-01: 5
- 2026-07-31: 26
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/zerodrop-mcp
- Socket report: https://socket.dev/npm/package/zerodrop-mcp
- Repository: https://github.com/zerodrop-dev/zerodrop-mcp
- Website: https://zerodrop.dev/
- Changelog RSS feed: https://verifymcp.io/servers/dev-zerodrop-zerodrop-mcp/zerodrop-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dev-zerodrop-zerodrop-mcp/zerodrop-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dev-zerodrop-zerodrop-mcp/zerodrop-mcp
