get-month-schedule
Fetch detailed NHL game schedules for a specific team by entering the team abbreviation, year, and month. Simplify planning and tracking of monthly matchups.
Instructions
Get the NHL schedule for a specific team for a given month
Input Schema
Name | Required | Description | Default |
---|---|---|---|
month | Yes | Month (1-12) | |
teamAbbrev | Yes | Three-letter team abbreviation (e.g. TOR, NYR, BOS) | |
year | Yes | Year (e.g. 2025) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"month": {
"description": "Month (1-12)",
"maximum": 12,
"minimum": 1,
"type": "number"
},
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"year": {
"description": "Year (e.g. 2025)",
"type": "number"
}
},
"required": [
"teamAbbrev",
"year",
"month"
],
"type": "object"
}