MLB Stats
get_schedule
Get list of games for a given date/range and/or team/opponent.
Remote etweisberg/mlb-mcp
Other tools also called get_schedule?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Date",
"default": null
},
"season": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Season",
"default": null
},
"game_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Game Id",
"default": null
},
"team_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Team Id",
"default": null
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "End Date",
"default": null
},
"sport_id": {
"type": "integer",
"title": "Sport Id",
"default": 1
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Start Date",
"default": null
},
"opponent_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Opponent Id",
"default": null
},
"include_series_status": {
"type": "boolean",
"title": "Include Series Status",
"default": true
}
}
}