get-player-landing
Retrieve detailed NHL player information by entering the player's ID, accessing structured data through the NHL MCP Server.
Instructions
Get information about an NHL player
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playerId | Yes | NHL player ID (e.g. 8478402 for Connor McDavid) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"playerId": {
"description": "NHL player ID (e.g. 8478402 for Connor McDavid)",
"type": "number"
}
},
"required": [
"playerId"
],
"type": "object"
}