get_leaderboards
Pack: chess · Endpoint: https://gateway.pipeworx.io/chess/mcp
Check top-ranked Chess.com players by format (daily, rapid, blitz, bullet). Returns rankings with ratings and win percentages.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/chess/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_leaderboards","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_leaderboards', {});
Response shape
Always returns: daily, live_rapid, live_blitz, live_bullet, tactics
| Field | Type | Description |
|---|---|---|
daily | array | Top 10 daily format players |
live_rapid | array | Top 10 rapid format players |
live_blitz | array | Top 10 blitz format players |
live_bullet | array | Top 10 bullet format players |
tactics | array | Top 10 tactics puzzle players |
Full JSON Schema
{
"type": "object",
"properties": {
"daily": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "Player rank on leaderboard"
},
"username": {
"type": "string",
"description": "Chess.com username"
},
"score": {
"type": "number",
"description": "Player score/rating"
}
}
},
"description": "Top 10 daily format players"
},
"live_rapid": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "Player rank on leaderboard"
},
"username": {
"type": "string",
"description": "Chess.com username"
},
"score": {
"type": "number",
"description": "Player score/rating"
}
}
},
"description": "Top 10 rapid format players"
},
"live_blitz": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "Player rank on leaderboard"
},
"username": {
"type": "string",
"description": "Chess.com username"
},
"score": {
"type": "number",
"description": "Player score/rating"
}
}
},
"description": "Top 10 blitz format players"
},
"live_bullet": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "Player rank on leaderboard"
},
"username": {
"type": "string",
"description": "Chess.com username"
},
"score": {
"type": "number",
"description": "Player score/rating"
}
}
},
"description": "Top 10 bullet format players"
},
"tactics": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rank": {
"type": "number",
"description": "Player rank on leaderboard"
},
"username": {
"type": "string",
"description": "Chess.com username"
},
"score": {
"type": "number",
"description": "Player score/rating"
}
}
},
"description": "Top 10 tactics puzzle players"
}
},
"required": [
"daily",
"live_rapid",
"live_blitz",
"live_bullet",
"tactics"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"chess": {
"url": "https://gateway.pipeworx.io/chess/mcp"
}
}
}
See Getting Started for client-specific install steps.