get_mlb_game_lineup
Retrieve lineup details for a specific MLB game by providing its game_id. This tool helps access player and team information for analyzing game strategies or tracking team performance.
Instructions
Get lineup information for a specific game by game_id.
Args: game_id (int): The game ID.
Returns: dict: Game lineup information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
game_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"game_id": {
"title": "Game Id",
"type": "integer"
}
},
"required": [
"game_id"
],
"type": "object"
}