ladder

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

Projected ladder per source.

Parameters

NameTypeRequiredDescription
yearnumberno
roundnumberno
sourcenumberno

Example call

Arguments

{
  "year": 2024,
  "round": 8,
  "source": 2
}

curl

curl -X POST https://gateway.pipeworx.io/squiggle/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ladder","arguments":{"year":2024,"round":8,"source":2}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ladder', {
  "year": 2024,
  "round": 8,
  "source": 2
});

Response shape

FieldTypeDescription
ladderarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ladder": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "year": {
            "type": "number"
          },
          "round": {
            "type": "number"
          },
          "swarms": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "sourceid": {
            "type": "number"
          },
          "wins": {
            "type": "string"
          },
          "dummy": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "mean_rank": {
            "type": "string"
          },
          "percentage": {
            "type": "string"
          },
          "team": {
            "type": "string"
          },
          "rank": {
            "type": "number"
          },
          "teamid": {
            "type": "number"
          },
          "updated": {
            "type": "string"
          }
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026