get_mlb_game_highlights
Retrieve MLB game highlights using a specific game ID with this tool. Access key moments and video snippets from any MLB game through the mlb-api-mcp server. Ideal for integrating baseball highlights into applications or analysis.
Instructions
Get game highlights for a specific game by game_id.
Args: game_id (int): The game ID.
Returns: dict: Game highlights.
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"
}