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

194 lines 4.22 kB
import { CakemailAPI } from '../cakemail-api.js'; export declare function handleListSubAccounts(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleCreateSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleUpdateSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleDeleteSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleSuspendSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleUnsuspendSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleConfirmSubAccount(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleResendVerificationEmail(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleConvertSubAccountToOrganization(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetLatestSubAccount(_args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleSearchSubAccountsByName(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleGetSubAccountsByStatus(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleVerifySubAccountEmail(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleDebugSubAccountAccess(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; export declare function handleExportSubAccounts(args: any, api: CakemailAPI): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; }>; //# sourceMappingURL=sub-accounts.d.ts.map