Use the official AgentMail MCP tools for Simone's own inbox. Send outbound mail with `mcp__agentmail__send_message`, reply with `mcp__agentmail__reply_to_message`, and prepare local attachments with `prepare_agentmail_attachment`. Do not use bash, curl, SDK scripts, or CLI commands for in-session email delivery.
Simone sends email through the official AgentMail MCP server.
Primary tools:
mcp__agentmail__send_messagemcp__agentmail__reply_to_messagemcp__agentmail__create_draftmcp__agentmail__send_draftmcp__agentmail__list_threadsmcp__agentmail__get_threadmcp__agentmail__get_attachmentLocal file helper:
prepare_agentmail_attachmentmcp__agentmail__send_message({
"inboxId": "[email protected]",
"to": ["[email protected]"],
"subject": "Subject line",
"text": "Plain text body",
"html": "<p>HTML body</p>"
})
Notes:
text and html.gmail skill only when Kevin explicitly wants the message sent from his own Gmail.prepare_agentmail_attachment({
"path": "/absolute/path/to/file.pdf"
})
attachments array.mcp__agentmail__reply_to_message({
"inboxId": "[email protected]",
"messageId": "<latest-message-id>",
"text": "Reply body",
"html": "<p>Reply body</p>"
})
If you need thread context first, use mcp__agentmail__list_threads and mcp__agentmail__get_thread.
If a message genuinely requires human approval, use the official draft flow:
mcp__agentmail__create_draftmcp__agentmail__update_draftmcp__agentmail__send_draftmcp__agentmail__delete_draftsend_agentmail tool call when the official MCP tools are available.agentmail-cli from an agent run.prepare_agentmail_attachment.