MLB Stats

get_team_batting

Get season-level Batting Statistics for Specific Team (from Baseball-Reference) ARGUMENTS: team : str : The Team Abbreviation (i.e. 'NYY' for Yankees) of the Team you want data for start_season : int : first season you want data for (or the only season if you do not specify an end_season) end_season : int : final season you want data for

Remote etweisberg/mlb-mcp

Other tools also called get_team_batting? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "ind": {
      "type": "integer",
      "title": "Ind",
      "default": 1
    },
    "league": {
      "type": "string",
      "title": "League",
      "default": "all"
    },
    "end_season": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "End Season",
      "default": null
    },
    "start_season": {
      "type": "integer",
      "title": "Start Season"
    }
  }
}