get-team-stats
Retrieve detailed NHL team statistics by entering the three-letter team abbreviation. Access player data, standings, schedules, and more through the NHL MCP Server.
Instructions
Get statistics for an NHL team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev"
],
"type": "object"
}