get-schedule
Retrieve NHL game schedules by specifying a team abbreviation and date. Filters results to display games for a specific team or day using the Model-Context Protocol.
Instructions
Get NHL game schedule
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date in YYYY-MM-DD format (defaults to today) | |
teamAbbrev | No | Three-letter team abbreviation to filter by (e.g. TOR, NYR) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format (defaults to today)",
"type": "string"
},
"teamAbbrev": {
"description": "Three-letter team abbreviation to filter by (e.g. TOR, NYR)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"type": "object"
}