Skip to main content
Glama

reply_all_email

Send responses to all recipients in an email thread using the Microsoft MCP server, simplifying group communication through structured inputs for account, email ID, and message body.

Instructions

Reply to all recipients of an email

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYes
bodyYes
email_idYes

Implementation Reference

  • Implementation of the reply_all_email tool. Uses Microsoft Graph API to POST to /me/messages/{email_id}/replyAll with the provided body text. Registered via @mcp.tool decorator.
    @mcp.tool def reply_all_email(account_id: str, email_id: str, body: str) -> dict[str, str]: """Reply to all recipients of an email""" endpoint = f"/me/messages/{email_id}/replyAll" payload = {"message": {"body": {"contentType": "Text", "content": body}}} graph.request("POST", endpoint, account_id, json=payload) return {"status": "sent"}

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/elyxlz/microsoft-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server