get-current-schedule
Retrieve the current NHL schedule for a specific team by entering the team's three-letter abbreviation (e.g., TOR). Optionally, set a limit on the number of games to display.
Instructions
Get the current NHL schedule for a specific team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of games to return (default: 10) | |
teamAbbrev | Yes | Three-letter team abbreviation (e.g. TOR, NYR, BOS) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Number of games to return (default: 10)",
"type": "number"
},
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev"
],
"type": "object"
}