top_players

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

Top-rated players for one variant.

Parameters

NameTypeRequiredDescription
perfstringyes
limitnumberno1-200 (default 50)

Example call

Arguments

{
  "perf": "blitz"
}

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":"top_players","arguments":{"perf":"blitz"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('top_players', {
  "perf": "blitz"
});

More examples

{
  "perf": "bullet",
  "limit": 100
}

Response shape

Always returns: items, count

FieldTypeDescription
itemsarray
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "User ID"
          },
          "username": {
            "type": "string",
            "description": "Username"
          },
          "title": {
            "type": "string",
            "description": "Title"
          },
          "rating": {
            "type": "number",
            "description": "Rating"
          },
          "games": {
            "type": "number",
            "description": "Games played"
          },
          "score": {
            "type": "number",
            "description": "Score"
          },
          "rd": {
            "type": "number",
            "description": "Rating deviation"
          },
          "prog": {
            "type": "number",
            "description": "Progress"
          }
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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