sgo_events

Pack: sports-game-odds · Endpoint: https://gateway.pipeworx.io/sports-game-odds/mcp

List upcoming games with odds. Returns scheduled events for a league (NFL, NBA, MLB, NHL, EPL, etc.) with team names, start time, status, and eventIDs to fetch full odds. Example: sgo_events({ leagueID: “NFL”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
leagueIDstringyesLeague identifier, e.g. “NFL”, “NBA”, “MLB”, “NHL”, “EPL”, “BUNDESLIGA”. Comma-separate for multiple.
oddsAvailablebooleannoOnly return events that currently have odds available. Defaults to true.
_apiKeystringyesSports Game Odds API key (get one free at sportsgameodds.com — Amateur plan).

Example call

Arguments

{
  "leagueID": "NFL",
  "_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_events","arguments":{"leagueID":"NFL","_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_events', {
  "leagueID": "NFL",
  "_apiKey": "your-sports-game-odds-api-key"
});

More examples

{
  "leagueID": "NBA,MLB",
  "oddsAvailable": true,
  "_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.

Regenerated from source · build August 15, 2026