get_player_awards
Retrieve awards for an NBA player by specifying their unique Player ID. This tool integrates with the NBA MCP server to fetch player-specific accolades directly.
Instructions
Get awards for a player by their ID.
Args: player_id: str The id of the player.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
player_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"player_id": {
"title": "Player Id",
"type": "string"
}
},
"required": [
"player_id"
],
"type": "object"
}