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

32 lines 1.02 kB
import { BaseApiClient } from './base-client.js'; import { AccountResponse, PatchAccountResponse } from '../types/cakemail-types.js'; export interface PatchSelfAccount { name?: string; email?: string; company?: string; language?: string; timezone?: string; country?: string; phone?: string; website?: string; description?: string; [key: string]: any; } export declare class AccountApi extends BaseApiClient { /** * Get my account details * Compliant with OpenAPI spec: GET /accounts/self */ getSelfAccount(): Promise<AccountResponse>; /** * Update my account * Compliant with OpenAPI spec: PATCH /accounts/self */ patchSelfAccount(data: PatchSelfAccount): Promise<PatchAccountResponse>; /** * Convert my account to an Organization * Compliant with OpenAPI spec: POST /accounts/self/convert-to-organization */ convertSelfAccountToOrganization(): Promise<AccountResponse>; } //# sourceMappingURL=account-api.d.ts.map