agent-inboxlisted
Install: claude install-skill Nabhyanirmal2709/agent-inbox
<objective>
Create temporary email inboxes on demand, receive real emails from any service (Supabase, Resend, SendGrid, etc.), extract confirmation/verification links, and optionally verify them in one tool call.
</objective>
<when_to_use>
- Testing sign-up / auth flows that require email verification
- Receiving "confirm your account" or "verify your email" links
- Any automated workflow where you need to receive an email
- E2E testing of email-sending features
</when_to_use>
<tools>
Six MCP tools from the `agent-inbox` server:
- `mcp__agent-inbox__create_inbox` — Create a new temporary inbox. Optional `name` parameter for easy reference.
- `mcp__agent-inbox__check_inbox` — Check for messages. Returns subjects, bodies, and extracted confirmation links.
- `mcp__agent-inbox__wait_for_email` — Poll until a matching email arrives. Filters by `from` and `subject_contains`. Auto-retries with backoff.
- `mcp__agent-inbox__verify_email` — One-shot: polls for confirmation email, extracts link, visits it via HTTP GET. Three steps in one call.
- `mcp__agent-inbox__list_inboxes` — List all active inboxes in this session.
- `mcp__agent-inbox__delete_inbox` — Delete an inbox when done.
</tools>
<process>
**Fast path (recommended) — use `verify_email` for the common case:**
1. **Create inbox** — `create_inbox({ prefix: "signup", name: "test" })`
2. **Use the address** — Enter it in a sign-up form, invite field, etc.
3. **Verify in one call** — `verify_email({ address: "test", subject