get_status
Retrieve complete chess position metadata—FEN, side to move, castling rights, en passant square, check status, and last move—to support planning and decision-making.
Instructions
Get current position metadata for model-friendly planning.
Returns (in result):
fen, side_to_move, fullmove_number, halfmove_clock, ply_count
castling_rights, en_passant_square
last_move_uci, last_move_san, who_moved_last
is_check, is_game_over, result
pieces: square-to-piece map (e.g., {"a2":"P", "e1":"K"})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |