get-date-schedule
Retrieve the NHL schedule for a specific date using the YYYY-MM-DD format through the NHL MCP Server. Access game details and plan accordingly.
Instructions
Get the NHL schedule for a specific date
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}