get-roster-by-season
Retrieve a specific NHL team's roster for any season using a three-letter team abbreviation and season format. Access structured player data through the NHL MCP Server.
Instructions
Get an NHL team's roster for a specific season
Input Schema
Name | Required | Description | Default |
---|---|---|---|
season | Yes | Season in YYYYYYYY format (e.g. 20232024) | |
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": {
"season": {
"description": "Season in YYYYYYYY format (e.g. 20232024)",
"type": "string"
},
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev",
"season"
],
"type": "object"
}