MCP server exposing 3 tools for sportsdataio.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/sportsdataio/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
sportsdataio_injuries — Current injuries in the NFL / NBA / MLB / NHL / CFB / CBB — returns each injured player with team, position, status (Out, Questionable, etc.) and the body part affected. Note: a free SportsDataIO trial key returns scrambled sample data, not real injuries. Example: sportsdataio_injuries({ league: "nfl", _apiKey: "your-key" })sportsdataio_projections — Projected player stats for a slate — fantasy points plus key projected stats per player. Daily sports (NBA / MLB / NHL / CBB) take a `date`; weekly sports (NFL / CFB) take `season` + `week`. Note: a free trial key returns scrambled sample data. Example: sportsdataio_projections({ league: "nba", date: "2026-01-15", _apiKey: "your-key" }) or sportsdataio_projections({ league: "nfl", season: "2025REG", week: 5, _apiKey: "your-key" })sportsdataio_player_props — Player prop bets for a date — available betting markets and outcomes (over/under totals, payouts) across NFL / NBA / MLB / NHL / CFB / CBB. Requires a SEPARATE SportsDataIO Odds/Props API key (the Props warehouse is billed apart from Stats/Projections). Note: a free trial key returns scrambled sample data. Example: sportsdataio_player_props({ league: "nba", date: "2026-01-15", _apiKey: "your-odds-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/sportsdataio/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io