# Dead Simple Email (oci · ghcr.io/deadsimple-email/deadsimple-email:0.2.2)

Give an agent its own inbox: send, receive, and pull signup codes from real email.

- Trust score: 37/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.deadsimple.email`: 64/100, [markdown](https://verifymcp.io/servers/email-deadsimple-dead-simple-email/api.md), [page](https://verifymcp.io/servers/email-deadsimple-dead-simple-email/api)
- oci · `ghcr.io/deadsimple-email/deadsimple-email:0.2.2`: 37/100 (this document), [markdown](https://verifymcp.io/servers/email-deadsimple-dead-simple-email/ghcr-io-deadsimple-email-deadsimple-email-0-2-2.md), [page](https://verifymcp.io/servers/email-deadsimple-dead-simple-email/ghcr-io-deadsimple-email-deadsimple-email-0-2-2)
- pypi · `deadsimple-email`: 24/100, [markdown](https://verifymcp.io/servers/email-deadsimple-dead-simple-email/deadsimple-email.md), [page](https://verifymcp.io/servers/email-deadsimple-dead-simple-email/deadsimple-email)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/deadsimple-email/deadsimple-email:0.2.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**: 0/100
  - Malware scan not yet available for this package.
  - CVE data not yet available for this package.
  - Install-script risk not yet assessed.
  - Dependency-health data not yet available.
- **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 4 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1112 tokens (~79/item across 14 items; 14 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add email-deadsimple-dead-simple-email -- docker run --rm -i ghcr.io/deadsimple-email/deadsimple-email:0.2.2
```

### Codex

```bash
codex mcp add email-deadsimple-dead-simple-email -- docker run --rm -i ghcr.io/deadsimple-email/deadsimple-email:0.2.2
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "email-deadsimple-dead-simple-email": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/deadsimple-email/deadsimple-email:0.2.2"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  email-deadsimple-dead-simple-email:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/deadsimple-email/deadsimple-email:0.2.2"]
```

### Other

```json
{
  "mcpServers": {
    "email-deadsimple-dead-simple-email": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/deadsimple-email/deadsimple-email:0.2.2"
      ]
    }
  }
}
```

## 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-01 (score 37, −4)

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

### 2026-07-31 (score 41, +30)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Tool coverage: 0
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: excellent

### 2026-07-30 (score 11)

First indexed and scored.

## MCP tools (14)

### `create_inbox` (~76 tokens)

Create Inbox

Create a new email inbox. Returns the inbox details including the email address.

    Args:
        display_name: Friendly name for the inbox (e.g. "Support Bot")
        tags: Comma-separated tags (e.g. "support,production")

Input parameters:

- `display_name` (string)
- `tags` (string)

Output parameters:

- `result` (string)

### `list_inboxes` (~44 tokens)

List Inboxes

List all email inboxes in the account.

    Args:
        limit: Maximum number of inboxes to return (default 20)

Input parameters:

- `limit` (integer)

Output parameters:

- `result` (string)

### `delete_inbox` (~39 tokens)

Delete Inbox

Delete an inbox and all its messages.

    Args:
        inbox_id: The inbox ID to delete

Input parameters:

- `inbox_id` (string, required)

Output parameters:

- `result` (string)

### `send_email` (~125 tokens)

Send Email

Send an email from an inbox.

    Args:
        inbox_id: The inbox to send from
        to: Recipient email address (comma-separated for multiple)
        subject: Email subject line
        body: Email body (plain text)
        cc: CC recipients (comma-separated, optional)
        bcc: BCC recipients (comma-separated, optional)

Input parameters:

- `bcc` (string)
- `body` (string, required)
- `cc` (string)
- `inbox_id` (string, required)
- `subject` (string, required)
- `to` (string, required)

Output parameters:

- `result` (string)

### `read_messages` (~58 tokens)

List Messages

Read recent messages in an inbox.

    Args:
        inbox_id: The inbox to read from
        limit: Maximum number of messages to return (default 10)

Input parameters:

- `inbox_id` (string, required)
- `limit` (integer)

Output parameters:

- `result` (string)

### `read_message` (~57 tokens)

Read Message

Read a single message with full body content.

    Args:
        inbox_id: The inbox containing the message
        message_id: The message ID to read

Input parameters:

- `inbox_id` (string, required)
- `message_id` (string, required)

Output parameters:

- `result` (string)

### `reply_to_message` (~78 tokens)

Reply to Message

Reply to a message. Threading headers are set automatically.

    Args:
        inbox_id: The inbox containing the message
        message_id: The message ID to reply to
        body: Reply body (plain text)

Input parameters:

- `body` (string, required)
- `inbox_id` (string, required)
- `message_id` (string, required)

Output parameters:

- `result` (string)

### `forward_message` (~90 tokens)

Forward Message

Forward a message to new recipients.

    Args:
        inbox_id: The inbox containing the message
        message_id: The message ID to forward
        to: Recipient email address (comma-separated for multiple)
        body: Optional additional text to include

Input parameters:

- `body` (string)
- `inbox_id` (string, required)
- `message_id` (string, required)
- `to` (string, required)

Output parameters:

- `result` (string)

### `wait_for_email` (~141 tokens)

Wait for Email

Block until a NEW inbound email arrives in the inbox, then return it.

    Use for signup/verification flows: trigger the action that sends the email,
    then call this to receive it. Only emails arriving after this call count.

    Args:
        inbox_id: The inbox to watch
        from_contains: Only match senders containing this text (optional)
        subject_contains: Only match subjects containing this text (optional)
        timeout_seconds: Max seconds to wait (default 60)

Input parameters:

- `from_contains` (string)
- `inbox_id` (string, required)
- `subject_contains` (string)
- `timeout_seconds` (integer)

Output parameters:

- `result` (string)

### `get_verification_code` (~119 tokens)

Get Verification Code

Wait for a verification/OTP email and return the extracted code.

    Waits for the next new inbound email, then returns the auto-extracted
    verification code (and any magic link). Perfect for autonomous sign-ups.

    Args:
        inbox_id: The inbox to watch
        from_contains: Only match senders containing this text (optional)
        timeout_seconds: Max seconds to wait (default 60)

Input parameters:

- `from_contains` (string)
- `inbox_id` (string, required)
- `timeout_seconds` (integer)

Output parameters:

- `result` (string)

### `get_verification_link` (~88 tokens)

Get Verification Link

Wait for an email and return the extracted magic link / verification URL.

    Args:
        inbox_id: The inbox to watch
        from_contains: Only match senders containing this text (optional)
        timeout_seconds: Max seconds to wait (default 60)

Input parameters:

- `from_contains` (string)
- `inbox_id` (string, required)
- `timeout_seconds` (integer)

Output parameters:

- `result` (string)

### `list_threads` (~59 tokens)

List Threads

List conversation threads in an inbox.

    Args:
        inbox_id: The inbox to list threads for
        limit: Maximum number of threads to return (default 10)

Input parameters:

- `inbox_id` (string, required)
- `limit` (integer)

Output parameters:

- `result` (string)

### `read_thread` (~56 tokens)

Read Thread

Read all messages in a conversation thread.

    Args:
        inbox_id: The inbox containing the thread
        thread_id: The thread ID to read

Input parameters:

- `inbox_id` (string, required)
- `thread_id` (string, required)

Output parameters:

- `result` (string)

### `get_usage` (~24 tokens)

Get Usage

Get account usage metrics: inboxes, emails sent/received, plan limits.

Output parameters:

- `result` (string)

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/email-deadsimple-dead-simple-email/ghcr-io-deadsimple-email-deadsimple-email-0-2-2#diagnostics

## Score history

- 2026-08-03: 37
- 2026-08-02: 37
- 2026-08-01: 37
- 2026-07-31: 41
- 2026-07-30: 11

## Links

- Repository: https://github.com/deadsimple-email/deadsimple-email
- Website: https://deadsimple.email/
- Changelog RSS feed: https://verifymcp.io/servers/email-deadsimple-dead-simple-email/ghcr-io-deadsimple-email-deadsimple-email-0-2-2/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/email-deadsimple-dead-simple-email/ghcr-io-deadsimple-email-deadsimple-email-0-2-2/changelog.json
- HTML version of this page: https://verifymcp.io/servers/email-deadsimple-dead-simple-email/ghcr-io-deadsimple-email-deadsimple-email-0-2-2
