MailgentMailgent
MCPTools Reference

mail.reply

Reply to an existing email in a thread

Scope: mail:send

Reply to a specific message. Automatically threads the response.

Parameters

NameTypeRequiredDescription
messageIdstringYesMessage to reply to
textstringYesReply text
htmlstringNoReply HTML

Example

Agent reads email from customer asking about pricing.

→ mail.reply({
    messageId: "<abc123@gmail.com>",
    text: "Our enterprise plan starts at $99/mo..."
  })

Returns

Message object with same threadId as original, subject: "Re: ...", labels: ["sent"].

REST Equivalent

POST /v0/messages/{messageId}/reply

On this page