player

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

Fetch a Wynncraft player’s stats by UUID or username: playtime, XP, guild, ranking, veteran status, and per-class totals.

Parameters

NameTypeRequiredDescription
uuid_or_usernamestringyes

Example call

Arguments

{
  "uuid_or_username": "Technoblade"
}

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":"player","arguments":{"uuid_or_username":"Technoblade"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('player', {
  "uuid_or_username": "Technoblade"
});

More examples

{
  "uuid_or_username": "550e8400-e29b-41d4-a716-446655440000"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Player stats 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.

Regenerated from source · build July 6, 2026