Feature request
Allow sending emails via the WhatsApp messenger bridge. The flow should be:
- User asks Claude (via WhatsApp) to send an email
- Claude drafts the email and presents it to the user (From, To, Subject, Body)
- User confirms via WhatsApp ("yes", "send it", etc.)
- Claude sends the email via
mcp__email__send
Context
Currently the messenger bridge handles incoming messages and can respond with text/media, but there's no workflow for composing and confirming outgoing emails. The confirmation step is critical — emails should never be sent without explicit user approval.
Implementation considerations
- The
draft=True → confirm → send_draft pattern already exists in the email MCP tool
- The messenger bridge needs to track pending drafts per conversation (state between turns)
- Confirmation should be unambiguous — require explicit "send" or "yes" rather than inferring from context
- Show the full draft (From, To, Subject, Body) before confirmation so the user can review on their phone
Feature request
Allow sending emails via the WhatsApp messenger bridge. The flow should be:
mcp__email__sendContext
Currently the messenger bridge handles incoming messages and can respond with text/media, but there's no workflow for composing and confirming outgoing emails. The confirmation step is critical — emails should never be sent without explicit user approval.
Implementation considerations
draft=True→ confirm →send_draftpattern already exists in the email MCP tool