MLB Stats
get_player_stats
Returns a list of current season or career stat data for a given player.
Remote etweisberg/mlb-mcp
Other tools also called get_player_stats?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"group": {
"type": "string",
"title": "Group",
"default": "hitting"
},
"stats": {
"type": "string",
"title": "Stats",
"default": "season"
},
"season": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Season",
"default": null
},
"player_id": {
"type": "integer",
"title": "Player Id"
}
}
}