UNPKG

msexchange-mcp

Version:

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

63 lines 2.25 kB
import { z } from 'zod'; declare const inputSchema: z.ZodObject<{ action: z.ZodEnum<["list", "add", "relate", "learn", "resolve"]>; name: z.ZodOptional<z.ZodString>; email: z.ZodOptional<z.ZodString>; displayName: z.ZodOptional<z.ZodString>; name1: z.ZodOptional<z.ZodString>; name2: z.ZodOptional<z.ZodString>; accountId: z.ZodDefault<z.ZodOptional<z.ZodString>>; }, "strip", z.ZodTypeAny, { accountId: string; action: "list" | "add" | "relate" | "learn" | "resolve"; name?: string | undefined; email?: string | undefined; displayName?: string | undefined; name1?: string | undefined; name2?: string | undefined; }, { action: "list" | "add" | "relate" | "learn" | "resolve"; name?: string | undefined; email?: string | undefined; displayName?: string | undefined; accountId?: string | undefined; name1?: string | undefined; name2?: string | undefined; }>; export declare const manageEmailAliasesTool: { name: string; description: string; parameters: z.ZodObject<{ action: z.ZodEnum<["list", "add", "relate", "learn", "resolve"]>; name: z.ZodOptional<z.ZodString>; email: z.ZodOptional<z.ZodString>; displayName: z.ZodOptional<z.ZodString>; name1: z.ZodOptional<z.ZodString>; name2: z.ZodOptional<z.ZodString>; accountId: z.ZodDefault<z.ZodOptional<z.ZodString>>; }, "strip", z.ZodTypeAny, { accountId: string; action: "list" | "add" | "relate" | "learn" | "resolve"; name?: string | undefined; email?: string | undefined; displayName?: string | undefined; name1?: string | undefined; name2?: string | undefined; }, { action: "list" | "add" | "relate" | "learn" | "resolve"; name?: string | undefined; email?: string | undefined; displayName?: string | undefined; accountId?: string | undefined; name1?: string | undefined; name2?: string | undefined; }>; execute: (input: z.infer<typeof inputSchema>) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {}; //# sourceMappingURL=manageEmailAliases.d.ts.map