MLB Stats
get_player_splits
Returns a dataframe of all split stats for a given player. If player_info is True, this will also return a dictionary that includes player position, handedness, height, weight, position, and team
Remote etweisberg/mlb-mcp
Other tools also called get_player_splits?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Year",
"default": null
},
"playerid": {
"type": "string",
"title": "Playerid"
},
"player_info": {
"type": "boolean",
"title": "Player Info",
"default": false
},
"pitching_splits": {
"type": "boolean",
"title": "Pitching Splits",
"default": false
}
}
}