sportsdataio_projections

Pack: sportsdataio · Endpoint: https://gateway.pipeworx.io/sportsdataio/mcp

Projected player stats for a slate — fantasy points plus key projected stats per player. Daily sports (NBA / MLB / NHL / CBB) take a \

Parameters

NameTypeRequiredDescription
leaguestringyesLeague to query. One of: ${LEAGUE_LIST}.
datestringnoGame date in YYYY-MM-DD format (used for NBA/MLB/NHL/CBB), e.g. “2026-01-15”
seasonstringnoSeason for weekly sports (NFL/CFB), e.g. “2025REG”, “2025POST”, or “2025”
weeknumbernoWeek number for weekly sports (NFL/CFB), e.g. 5
_apiKeystringyesSportsDataIO API key

Example call

Arguments

{
  "league": "nba",
  "date": "2026-01-15",
  "_apiKey": "your-sportsdataio-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/sportsdataio/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sportsdataio_projections","arguments":{"league":"nba","date":"2026-01-15","_apiKey":"your-sportsdataio-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('sportsdataio_projections', {
  "league": "nba",
  "date": "2026-01-15",
  "_apiKey": "your-sportsdataio-api-key"
});

More examples

{
  "league": "nfl",
  "season": "2025REG",
  "week": 5,
  "_apiKey": "your-sportsdataio-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "sportsdataio": {
      "url": "https://gateway.pipeworx.io/sportsdataio/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026