UNPKG

msexchange-mcp

Version:

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

29 lines 735 B
import { z } from 'zod'; export declare const deleteMailRuleTool: { name: string; description: string; parameters: z.ZodObject<{ user_id: z.ZodString; rule_id: z.ZodString; confirm: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>; }, "strip", z.ZodTypeAny, { user_id: string; rule_id: string; confirm: boolean; }, { user_id: string; rule_id: string; confirm?: boolean | undefined; }>; execute: (params: { user_id: string; rule_id: string; confirm?: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=deleteMailRule.d.ts.map