get_standings

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

League standings / table: win-loss records, win %, games behind (and points/draws for soccer), grouped by conference/division. PREFER for “NBA standings”, “Premier League table”, “NFL division standings”, “who is leading ”.

Parameters

NameTypeRequiredDescription
sportstringyesSport, e.g. ‘basketball’, ‘soccer’.
leaguestringyesLeague slug, e.g. ‘nba’, ‘eng.1’.
seasonnumbernoOptional 4-digit season year (e.g. 2025). Default = current season.

Example call

Arguments

{
  "sport": "basketball",
  "league": "nba"
}

curl

curl -X POST https://gateway.pipeworx.io/espn/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_standings","arguments":{"sport":"basketball","league":"nba"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_standings', {
  "sport": "basketball",
  "league": "nba"
});

More examples

{
  "sport": "soccer",
  "league": "eng.1",
  "season": 2024
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 9, 2026