msexchange-mcp
Version:
MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API
37 lines • 960 B
TypeScript
import { z } from 'zod';
export declare const addAttachmentToDraftTool: {
name: string;
description: string;
parameters: z.ZodObject<{
user_id: z.ZodString;
draft_id: z.ZodString;
name: z.ZodString;
content: z.ZodString;
contentType: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
name: string;
user_id: string;
content: string;
draft_id: string;
contentType?: string | undefined;
}, {
name: string;
user_id: string;
content: string;
draft_id: string;
contentType?: string | undefined;
}>;
execute: (params: {
user_id: string;
draft_id: string;
name: string;
content: string;
contentType?: string;
}) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};
//# sourceMappingURL=addAttachmentToDraft.d.ts.map