UNPKG

@iflow-mcp/chess-mcp

Version:

Chess MCP server with position evaluation, move validation, and masters database

10 lines (9 loc) 248 B
export interface ImageGenerationOptions { size?: number; light?: string; dark?: string; flip?: boolean; } export declare class ChessImageService { generateImage(fen: string, options?: ImageGenerationOptions): Promise<Buffer>; }