msexchange-mcp
Version:
MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API
33 lines • 837 B
TypeScript
import { z } from 'zod';
export declare const replyEmailTool: {
name: string;
description: string;
parameters: z.ZodObject<{
user_id: z.ZodString;
message_id: z.ZodString;
comment: z.ZodString;
reply_all: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
user_id: string;
message_id: string;
comment: string;
reply_all: boolean;
}, {
user_id: string;
message_id: string;
comment: string;
reply_all?: boolean | undefined;
}>;
execute: (params: {
user_id: string;
message_id: string;
comment: string;
reply_all?: boolean;
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};
//# sourceMappingURL=replyEmail.d.ts.map