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