# Disposable Email For Agents

Create and manage temporary email addresses that expire automatically after 24 hours. Protect your primary inbox from spam by using disposable addresses for sign-ups and testing. Access incoming mess…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add myagentinbox/get-disposable-email

# Browse available tools
npx -y @smithery/cli@latest tool list myagentinbox/get-disposable-email

# Get full schema for a tool
npx -y @smithery/cli@latest tool get myagentinbox/get-disposable-email create_inbox

# Call a tool
npx -y @smithery/cli@latest tool call myagentinbox/get-disposable-email create_inbox '{}'
```

## Direct MCP Connection

Endpoint: `https://get-disposable-email--myagentinbox.run.tools`

## Tools (4)

- `create_inbox` — Create a disposable email inbox that expires in 24 hours. Returns the generated email address, creation time, and expir…
- `check_inbox` — Check for messages in a disposable inbox. Returns a list of message summaries including sender, subject, and preview.
- `read_message` — Read the full content of a specific email message including sender, recipients, subject, body text, and attachment info.
- `download_attachment` — Download an email attachment. Returns images as base64, text files inline, and binary files as download URLs.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get myagentinbox/get-disposable-email <tool-name>
```

## Prompts (1)

- `receive_email` (purpose) — Create a disposable inbox and wait for an incoming email
