UNPKG

cakemail-mcp-server

Version:

Enterprise MCP server for Cakemail API integration with Claude AI - includes comprehensive template management, list management, sub-account management, BEEeditor visual email design, and advanced analytics

86 lines 1.86 kB
import { CakemailAPI } from '../cakemail-api.js'; export declare function handleListTemplates(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleCreateTemplate(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetTemplate(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleUpdateTemplate(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleDeleteTemplate(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleDuplicateTemplate(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleRenderTemplate(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; //# sourceMappingURL=templates.d.ts.map