Chess.com

live GamesSports

Look up Chess.com player profiles, game stats, monthly game archives, and leaderboards

4 tools
0ms auth
free tier 50 calls/day

Tools

get_player

Get a Chess.com player's profile by username (e.g., 'hikaru'). Returns title, country, followers, join date, and last online time.

No parameters required.

Try it
get_stats

Get a player's ratings and game records across daily, rapid, blitz, and bullet formats. Returns current/best ratings and win/loss/draw counts.

No parameters required.

Try it
get_games

Retrieve a player's completed games for a specific month (format: YYYY/MM, e.g., '2024/01'). Returns game URLs, time controls, results, and ratings.

No parameters required.

Try it
get_leaderboards

Check top-ranked Chess.com players by format (daily, rapid, blitz, bullet). Returns rankings with ratings and win percentages.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/chess/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/chess/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_player","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_player", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("look up chess");