msexchange-mcp
Version:
MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API
25 lines • 589 B
TypeScript
import { z } from 'zod';
export declare const deleteEmailTool: {
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=deleteEmail.d.ts.map