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