Games & Entertainment
Parse & validate FEN board snapshots, PGN/SAN movetext (with parity, check/mate counts, threefold); compute Elo rating updates from win/draw/loss results, with Lichess/Chess.com tier bands
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/chess-fen-pgn-elo-rating-tutor' \
-H 'Content-Type: application/json' \
-d '{"mode":"fen","fen":"rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1","pgn":"PGN movetext, e.g.\n1. e4 e5 2. Nf3 Nc6 3. Bb5 a6 4. Ba4 Nf6 5. O-O Be7 1/2-1/2","playerRating":0,"kFactor":32,"games":"One per line: opponentRating then result.\n1609 loss\n1477 win\n1388 win\n1586 win\n1720 loss"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/chess-fen-pgn-elo-rating-tutor| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| fen | textarea | No | — |
| pgn | textarea | No | — |
| playerRating | number | No | — |
| kFactor | number | No | — |
| games |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-chess-fen-pgn-elo-rating-tutor": {
"name": "chess-fen-pgn-elo-rating-tutor",
"description": "Parse & validate FEN board snapshots, PGN/SAN movetext (with parity, check/mate counts, threefold); compute Elo rating updates from win/draw/loss results, with Lichess/Chess.com tier bands",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=chess-fen-pgn-elo-rating-tutor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "chess-fen-pgn-elo-rating-tutor",
"arguments": {
"mode": "fen",
"fen": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
"pgn": "PGN movetext, e.g.\n1. e4 e5 2. Nf3 Nc6 3. Bb5 a6 4. Ba4 Nf6 5. O-O Be7 1/2-1/2",
"playerRating": 0,
"kFactor": 32,
"games": "One per line: opponentRating then result.\n1609 loss\n1477 win\n1388 win\n1586 win\n1720 loss"
}
}
}| textarea |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]