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
| Field | Type | Description |
|---|---|---|
standings | array |
Full JSON Schema
{
"type": "object",
"properties": {
"standings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"percentage": {
"type": "number"
},
"draws": {
"type": "number"
},
"played": {
"type": "number"
},
"id": {
"type": "number"
},
"rank": {
"type": "number"
},
"losses": {
"type": "number"
},
"against": {
"type": "number"
},
"goals_for": {
"type": "number"
},
"name": {
"type": "string"
},
"behinds_for": {
"type": "number"
},
"pts": {
"type": "number"
},
"goals_against": {
"type": "number"
},
"behinds_against": {
"type": "number"
},
"for": {
"type": "number"
},
"wins": {
"type": "number"
}
}
}
}
}
}
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.