Resend MCP server enables AI assistants to compose and send emails through the Resend API. Built with TypeScript and the Model Context Protocol SDK, it provides a single tool for sending emails with support for customizable sender addresses, reply-to fields, and scheduled delivery. The implementation requires a Resend API key and sender email address, making it ideal for users who want their AI assistant to draft and dispatch emails directly. The server can be installed via npm or through ClaudeMind desktop app for seamless integration.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Send an email using the Resend API. Inputs: to (string): Recipient email address, subject (string): Email subject line, content (string): Plain text email content, from (string, optional): Sender email address (uses SENDER_EMAIL_ADDRESS if not provided), replyTo (array, optional): Reply-to email addresses (uses REPLY_TO_EMAIL_ADDRESSES if not provided), scheduledAt (string, optional): Scheduled email delivery time, attachments (array, optional): List of attachments, each attachment must have: filename (string): Name of the attachment file, localPath (string): Absolute path to a local file on user's computer (required if remoteUrl not provided), remoteUrl (string): URL to a file on the internet (required if localPath not provided).