Connects Claude to Squiggle's AFL data API with six tools covering teams, fixtures, results, ladder standings, and crowd-sourced tips from registered tipping sources. You get both raw game data and aggregated predictions, so you can ask about match schedules, current ladder positions, or compare tips across different sources. Part of the Pipeworx gateway, which means you can either connect to this standalone or access it alongside 250+ other data sources through their unified endpoint. The ask_pipeworx wrapper lets you query in plain English instead of calling tools directly. Useful if you're building AFL stats dashboards, tipping bots, or just want to ask Claude about footy without manually looking up fixtures.
Squiggle MCP — AFL fixture / results / tips.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
teams | Team list. |
games | Fixture + results. |
standings | Ladder. |
sources | Registered tipping sources. |
tips | Tips per game per source. |
ladder | Projected ladder per source. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"squiggle": {
"url": "https://gateway.pipeworx.io/squiggle/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Squiggle data" })
The gateway picks the right tool and fills the arguments automatically.
MIT