sportsdataio_injuries

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

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” })

Parameters

NameTypeRequiredDescription
leaguestringyesLeague to query. One of: ${LEAGUE_LIST}.
_apiKeystringyesSportsDataIO API key (free trial at sportsdata.io/developers)

Example call

Arguments

{
  "league": "nfl",
  "_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_injuries","arguments":{"league":"nfl","_apiKey":"your-sportsdataio-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('sportsdataio_injuries', {
  "league": "nfl",
  "_apiKey": "your-sportsdataio-api-key"
});

More examples

{
  "league": "nba",
  "_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