tips
Pack: squiggle · Endpoint: https://gateway.pipeworx.io/squiggle/mcp
Tips per game per source.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | number | no | |
round | number | no | |
source | number | no | Source id (from /sources). |
Example call
Arguments
{
"year": 2024,
"round": 3,
"source": 1
}
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":"tips","arguments":{"year":2024,"round":3,"source":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tips', {
"year": 2024,
"round": 3,
"source": 1
});
Response shape
| Field | Type | Description |
|---|---|---|
tips | array |
Full JSON Schema
{
"type": "object",
"properties": {
"tips": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gameid": {
"type": "number"
},
"ateam": {
"type": "string"
},
"hteamid": {
"type": "number"
},
"hmargin": {
"type": [
"string",
"null"
]
},
"year": {
"type": "number"
},
"round": {
"type": "number"
},
"venue": {
"type": "string"
},
"bits": {
"type": "string"
},
"confidence": {
"type": "string"
},
"date": {
"type": "string"
},
"sourceid": {
"type": "number"
},
"err": {
"type": [
"string",
"null"
]
},
"correct": {
"type": "number"
},
"source": {
"type": "string"
},
"margin": {
"type": [
"string",
"null"
]
},
"ateamid": {
"type": "number"
},
"hteam": {
"type": "string"
},
"hconfidence": {
"type": "string"
},
"tipteamid": {
"type": "number"
},
"tip": {
"type": "string"
},
"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.