UNPKG

msexchange-mcp

Version:

MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API

12 lines 391 B
import { EmailMessage } from '../types/email.js'; export interface FormatOptions { includeBody?: boolean; includeHeaders?: boolean; maxBodyLength?: number; includeAttachments?: boolean; } /** * Format an email message for MCP output */ export declare function formatEmailForMCP(email: EmailMessage, options?: FormatOptions): string; //# sourceMappingURL=formatters.d.ts.map