leaderboards

Pack: lichess · Endpoint: https://gateway.pipeworx.io/lichess/mcp

Fetch the top-10 rated players across every Lichess variant in a single call; returns one ranked list per variant (bullet, blitz, rapid, classical, and more).

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/lichess/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"leaderboards","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('leaderboards', {});

Response shape

FieldTypeDescription
bulletarrayTop 10 bullet players
blitzarrayTop 10 blitz players
rapidarrayTop 10 rapid players
classicalarrayTop 10 classical players
Full JSON Schema
{
  "type": "object",
  "properties": {
    "bullet": {
      "type": "array",
      "description": "Top 10 bullet players",
      "items": {
        "type": "object"
      }
    },
    "blitz": {
      "type": "array",
      "description": "Top 10 blitz players",
      "items": {
        "type": "object"
      }
    },
    "rapid": {
      "type": "array",
      "description": "Top 10 rapid players",
      "items": {
        "type": "object"
      }
    },
    "classical": {
      "type": "array",
      "description": "Top 10 classical players",
      "items": {
        "type": "object"
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "lichess": {
      "url": "https://gateway.pipeworx.io/lichess/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026