MLB Stats

get_statcast_single_game

Pulls statcast play-level data from Baseball Savant for a single game, identified by its MLB game ID (game_pk in statcast data) INPUTS: game_pk : 6-digit integer MLB game ID to retrieve 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_single_game? See providers with this name

Input Schema


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