UNPKG

msexchange-mcp

Version:

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

29 lines 778 B
import { z } from 'zod'; export declare const createFolderTool: { name: string; description: string; parameters: z.ZodObject<{ user_id: z.ZodString; folder_name: z.ZodString; parent_folder_id: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { user_id: string; folder_name: string; parent_folder_id?: string | undefined; }, { user_id: string; folder_name: string; parent_folder_id?: string | undefined; }>; execute: (params: { user_id: string; folder_name: string; parent_folder_id?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=createFolder.d.ts.map