UNPKG

@iflow-mcp/chess-mcp

Version:

A Model Context Protocol (MCP) server that provides an interactive chess game experience using MCP-UI. This server exposes chess game functionality through MCP tools and provides a web-based chessboard interface for playing games.

4 lines (3 loc) 204 B
import { Chess } from "chess.js"; export declare function saveGame(sessionId: string | undefined, game: Chess): Promise<void>; export declare function loadGame(sessionId?: string): Promise<Chess | null>;