get-current-team-stats
Retrieve real-time NHL team statistics using a three-letter team abbreviation (e.g., TOR, NYR) on the NHL MCP Server. Access structured data for analysis or integration.
Instructions
Get current 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"
}