get_mlb_player_info
Retrieve detailed player information by ID using a FastAPI-based MLB data integration tool. Enables access to baseball statistics and player data for AI applications and analysis.
Instructions
Get information about a specific player by ID.
Args: player_id (int): The player ID.
Returns: dict: Player information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
player_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"player_id": {
"title": "Player Id",
"type": "integer"
}
},
"required": [
"player_id"
],
"type": "object"
}