MLB Stats

get_statcast_pitcher_pitch_arsenal

Retrieves high level stats on each pitcher's arsenal in a given year. ARGUMENTS year: The year for which you wish to retrieve expected stats data. Format: YYYY. minP: The minimum number of pitches thrown. If a player falls below this threshold, they will be excluded from the results. If no value is specified, only qualified pitchers will be returned. arsenal_type: The type of stat to retrieve for the pitchers' arsenals. Options include ["average_speed", "n_", "average_spin"], where "n_" corresponds to the percentage share for each pitch. If no value is specified, it will default to average speed. 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_pitcher_pitch_arsenal? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "minP": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Minp",
      "default": null
    },
    "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
    },
    "arsenal_type": {
      "type": "string",
      "title": "Arsenal Type",
      "default": "average_speed"
    }
  }
}