Validate and visualize chess positions using FEN notation.
A Model Context Protocol (MCP) server that provides chess FEN notation validation and visualization capabilities.
npx chess-fen-mcp
Or install globally:
npm install -g chess-fen-mcp
Add to your MCP client configuration (Claude Desktop, etc.):
{
"mcpServers": {
"chess-fen": {
"command": "npx",
"args": ["chess-fen-mcp"]
}
}
}
If installed globally, you can also use:
{
"mcpServers": {
"chess-fen": {
"command": "chess-fen-mcp"
}
}
}
visualize_fen
Converts a FEN string to an ASCII chess board visualization.
Parameters:
fen_string
(string, required): FEN notation stringExample Input:
fen_string: "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
Example Output:
Fen {
rows: 8,
columns: 8,
board: [
a b c d e f g h
8 ♜ ♞ ♝ ♛ ♚ ♝ ♞ ♜ 8
7 ♟ ♟ ♟ ♟ ♟ ♟ ♟ ♟ 7
6 . . . . . . . . 6
5 . . . . . . . . 5
4 . . . . . . . . 4
3 . . . . . . . . 3
2 ♙ ♙ ♙ ♙ ♙ ♙ ♙ ♙ 2
1 ♖ ♘ ♗ ♕ ♔ ♗ ♘ ♖ 1
a b c d e f g h
],
toMove: 'white',
castlingRights: {
white: { queenside: true, kingside: true },
black: { queenside: true, kingside: true }
},
enPassantSquare: '-',
halfMoves: 0,
fullMoves: 1
}
git clone
cd chess-fen-mcp
npm install
npm run dev
MIT
Provides access to the Lucide icon library for use in LLM and agentic applications.
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Programmatically control iOS simulators via stdio transport. Requires macOS with Xcode and installed iOS simulators.
Clojure linter
Converts LaTeX source code into professionally formatted PDF documents.
A Next.js-based MCP server with OAuth 2.1 authentication support using Google as the default provider. Requires a PostgreSQL database and optionally Redis for SSE transport.
Interact with Binalyze AIR's digital forensics and incident response capabilities using natural language.
A minimal MCP server mock in TypeScript for testing MCP clients, supporting both STDIO and HTTP/SSE protocols.
Provides tools for geospatial analysis within Jupyter notebooks.
A comprehensive toolkit for AI-driven development, offering file system operations, code analysis, execution, web searching, and system information retrieval.