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

77 lines 1.72 kB
import { CakemailAPI } from '../cakemail-api.js'; /** * Get campaign logs with intelligent event categorization and smart filtering */ export declare function handleGetCampaignLogs(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetWorkflowActionLogs(_args: any, _api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetWorkflowLogs(_args: any, _api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetTransactionalEmailLogs(_args: any, _api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetListLogs(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleDebugLogsAccess(_args: any, _api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; //# sourceMappingURL=logs.d.ts.map