UNPKG

@ironclads/namecheap-mcp

Version:

MCP server for Namecheap API integration - domain management, DNS, and domain suggestions

15 lines (14 loc) 583 B
export declare class DomainGenerator { private static readonly PREFIXES; private static readonly SUFFIXES; private static readonly ALTERNATIVES; private static readonly NUMBERS; static generateSuggestions(keyword: string, options?: { includeHyphens?: boolean; includeNumbers?: boolean; minLength?: number; maxLength?: number; }): string[]; static scoreDomain(domain: string, keyword: string): number; static getSuggestionType(domain: string, keyword: string): 'exact' | 'prefix' | 'suffix' | 'alternate' | 'related'; }