get_player_career_stats
Retrieve NBA player career statistics by inputting their unique player ID using the NBA MCP Server for accurate and detailed data analysis.
Instructions
Get career stats 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"
}