← stat-api.com

INDIVIDUAL MCP TOOL

list_leagues

List every league/data group this API serves (nfl, nba, mlb, nhl, pga, dfs, kalshi, polymarket, reference) with table counts and availability.

stat-api.comnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

stat-api.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.stat-api]
url = "https://api.stat-api.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "stat-api": {
      "type": "http",
      "url": "https://api.stat-api.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: stat-api
Remote MCP URL: https://api.stat-api.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "stat-api": {
      "url": "https://api.stat-api.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "stat-api": {
      "type": "http",
      "url": "https://api.stat-api.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "stat-api",
  "transport": "streamable-http",
  "url": "https://api.stat-api.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_tables — List every queryable table in one league with a one-line summary each.
  • describe_table — Full contract for one table: fields with types and descriptions, the filters query_table accepts (with operators like __gte/__lte/__between/__like and required filter combinations), page-size limits, primary key, and a runnable example URL.
  • query_table — Query any table.
  • get_record — Fetch a single row by primary key.
  • search_players — Fuzzy player-name search (typo-tolerant).
  • games_on_date — Games scheduled/played on one calendar date (US-Eastern) for nba, mlb, or nhl; defaults to today.
  • game_markets — Prediction-market contracts attached to one sporting event: Kalshi events+markets and/or Polymarket events+markets linked via (league_code, competition_id).
  • graphql_query — Run a GraphQL query against the same data with relations — nest from a game to its teams/players/odds in one call.