UNPKG

msexchange-mcp

Version:

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

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