UNPKG

msexchange-mcp

Version:

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

48 lines 1.11 kB
import { z } from 'zod'; export declare const markAsReadTool: { name: string; description: string; parameters: z.ZodObject<{ user_id: z.ZodString; message_id: z.ZodString; }, "strip", z.ZodTypeAny, { user_id: string; message_id: string; }, { user_id: string; message_id: string; }>; execute: (params: { user_id: string; message_id: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const markAsUnreadTool: { name: string; description: string; parameters: z.ZodObject<{ user_id: z.ZodString; message_id: z.ZodString; }, "strip", z.ZodTypeAny, { user_id: string; message_id: string; }, { user_id: string; message_id: string; }>; execute: (params: { user_id: string; message_id: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=markAsRead.d.ts.map