UNPKG

msexchange-mcp

Version:

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

25 lines 591 B
import { z } from 'zod'; export declare const getEmailByIdTool: { name: string; description: string; parameters: z.ZodObject<{ user_id: z.ZodString; message_id: z.ZodString; }, "strip", z.ZodTypeAny, { user_id: string; message_id: string; }, { user_id: string; message_id: string; }>; execute: (params: { user_id: string; message_id: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=getEmailById.d.ts.map