MLB Stats
get_top_prospects
Retrieves the top prospects by team or leaguewide. It can return top prospect pitchers, batters, or both. ARGUMENTS team: The team name for which you wish to retrieve top prospects. If not specified, the function will return leaguewide top prospects. playerType: Either "pitchers" or "batters". If not specified, the function will return top prospects for both pitchers and batters.
Remote etweisberg/mlb-mcp
Other tools also called get_top_prospects?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"team": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Team",
"default": null
},
"player_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Player Type",
"default": null
}
}
}