MLB Stats

get_statcast_batter_percentile_ranks

Retrieves percentile ranks for batters in a given year. ARGUMENTS year: The year for which you wish to retrieve percentile data. Format: YYYY. start_row: optional (defaults to None) : starting row index for truncating large results (0-based, inclusive) end_row: optional (defaults to None) : ending row index for truncating large results (0-based, exclusive) Use start_row and end_row to limit response size when dealing with large datasets.

Remote etweisberg/mlb-mcp

Other tools also called get_statcast_batter_percentile_ranks? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "year": {
      "type": "integer",
      "title": "Year"
    },
    "end_row": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "End Row",
      "default": null
    },
    "start_row": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Start Row",
      "default": null
    }
  }
}