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
22 lines • 742 B
TypeScript
export declare function formatCampaignResponse(campaign: any, action?: string): {
content: {
type: string;
text: string;
}[];
};
export declare function formatSuccessResponse(message: string, data?: any): {
content: {
type: string;
text: string;
}[];
};
export declare function formatListResponse(items: any[], title: string, formatter: (item: any, index: number) => string): {
content: {
type: string;
text: string;
}[];
};
export declare function formatSectionHeader(title: string): string;
export declare function formatKeyValue(key: string, value: string): string;
export declare function formatList(items: string[]): string;
//# sourceMappingURL=formatting.d.ts.map