standings
Pack: squiggle · Endpoint: https://gateway.pipeworx.io/squiggle/mcp
Fetch the AFL ladder (standings) for a given year and optional round from Squiggle; returns wins, losses, points, and percentage for each team.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | number | no | |
round | number | no |
Example call
Arguments
{
"year": 2024,
"round": 10
}
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":"standings","arguments":{"year":2024,"round":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('standings', {
"year": 2024,
"round": 10
});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"position": {
"type": "number",
"description": "Ladder position"
},
"team": {
"type": "string",
"description": "Team name"
},
"wins": {
"type": "number",
"description": "Number of wins"
},
"losses": {
"type": "number",
"description": "Number of losses"
},
"points": {
"type": "number",
"description": "Competition points"
}
}
}
},
"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": {
"squiggle": {
"url": "https://gateway.pipeworx.io/squiggle/mcp"
}
}
}
See Getting Started for client-specific install steps.