leaderboard
Pack: wynncraft · Endpoint: https://gateway.pipeworx.io/wynncraft/mcp
Fetch a Wynncraft leaderboard by type (e.g. ‘combatGlobalLevel’, ‘guildLevel’, ‘warsCompletion’); returns ranked entries up to resultLimit.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | yes | |
resultLimit | number | no |
Example call
Arguments
{
"type": "overall"
}
curl
curl -X POST https://gateway.pipeworx.io/wynncraft/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"leaderboard","arguments":{"type":"overall"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('leaderboard', {
"type": "overall"
});
More examples
{
"type": "level",
"resultLimit": 50
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Leaderboard data from Wynncraft API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wynncraft": {
"url": "https://gateway.pipeworx.io/wynncraft/mcp"
}
}
}
See Getting Started for client-specific install steps.