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

18 lines 497 B
import { handleCakemailError } from '../utils/errors.js'; export async function handleHealthCheck(_args, api) { try { const health = await api.healthCheck(); return { content: [ { type: 'text', text: `Health Status: ${JSON.stringify(health, null, 2)}`, }, ], }; } catch (error) { return handleCakemailError(error); } } //# sourceMappingURL=health.js.map