MLB Stats

get_standings

Returns a dict of standings data for a given league/division and season.

Remote etweisberg/mlb-mcp

Other tools also called get_standings? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "season": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Season",
      "default": null
    },
    "league_id": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "League Id",
      "default": null
    },
    "division_id": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Division Id",
      "default": null
    },
    "standings_types": {
      "type": "string",
      "title": "Standings Types",
      "default": "regularSeason"
    }
  }
}