sgo_event_odds
Pack: sports-game-odds · Endpoint: https://gateway.pipeworx.io/sports-game-odds/mcp
Get all odds & player props for a specific game. Returns moneyline, spread, and total markets plus player props for a single event, with prices across sportsbooks. Look up the eventID first via sgo_events. Example: sgo_event_odds({ eventID: “abc123”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
eventID | string | yes | Event identifier, from sgo_events (event.eventID). |
_apiKey | string | yes | Sports Game Odds API key (get one free at sportsgameodds.com — Amateur plan). |
Example call
Arguments
{
"eventID": "abc123",
"_apiKey": "your-sports-game-odds-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/sports-game-odds/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sgo_event_odds","arguments":{"eventID":"abc123","_apiKey":"your-sports-game-odds-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sgo_event_odds', {
"eventID": "abc123",
"_apiKey": "your-sports-game-odds-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sports-game-odds": {
"url": "https://gateway.pipeworx.io/sports-game-odds/mcp"
}
}
}
See Getting Started for client-specific install steps.