UNPKG

msexchange-mcp

Version:

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

33 lines 1.21 kB
import { z } from 'zod'; export declare const setupOrganizationFoldersTool: { name: string; description: string; parameters: z.ZodObject<{ user_id: z.ZodString; folder_set: z.ZodDefault<z.ZodOptional<z.ZodEnum<["business", "personal", "minimal", "custom"]>>>; custom_folders: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent_folder_id: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { user_id: string; folder_set: "custom" | "business" | "personal" | "minimal"; parent_folder_id?: string | undefined; custom_folders?: string[] | undefined; }, { user_id: string; parent_folder_id?: string | undefined; folder_set?: "custom" | "business" | "personal" | "minimal" | undefined; custom_folders?: string[] | undefined; }>; execute: (params: { user_id: string; folder_set?: "business" | "personal" | "minimal" | "custom"; custom_folders?: string[]; parent_folder_id?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=setupOrganizationFolders.d.ts.map