← Back to all apps

Chessy

Entertainmentby Altmatter LLC
Launched Feb 27, 2026 on ChatGPT

Challenge yourself to a game of chess against ChatGPT that thinks through each move in real time. You play white, the ChatGPT plays black — make your move and watch it respond.

5ChatGPT Tools
Altmatter LLCDeveloper
EntertainmentCategory

Available Tools

End the chess game

end_game
Full Description

Ends the current game. User can resign or abandon the game.

Parameters (1 required, 1 optional)
Required
gameIdstring

The game identifier

Optional
reasonstring

Reason for ending the game

Options:resignabandon

AI makes a chess move

model_move
Full Description

The AI (playing as black) makes a move. Use this after user_move when it's black's turn.

Parameters (3 required, 1 optional)
Required
fromstring

Source square (e.g., 'e7')

gameIdstring

The game identifier

tostring

Target square (e.g., 'e5')

Optional
promotionstring

Promotion piece if pawn reaches last rank (q/r/b/n)

Show an existing chess game

show_game
Full Description

Displays the UI for an existing chess game. Use this to resume or view a game in progress.

Parameters (1 required)
Required
gameIdstring

The game identifier to display

Start a new chess game against the AI

start_game
Full Description

Starts a new single-player chess game. The user plays as white, the AI plays as black.

Submit a chess move

user_move
Full Description

Records a move made by the user (playing as white). The move is validated and applied if legal.

Parameters (3 required, 1 optional)
Required
fromstring

Source square (e.g., 'e2')

gameIdstring

The game identifier

tostring

Target square (e.g., 'e4')

Optional
promotionstring

Promotion piece if pawn reaches last rank (q/r/b/n)