Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
get_players | Get a list of all NBA players. |
get_active_players | Get a list of all active NBA players. |
get_teams | Get a list of all NBA teams. |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_player_career_stats | Get career stats for a player by their ID. Args: player_id: str The id of the player. |
get_player_awards | Get awards for a player by their ID. Args: player_id: str The id of the player. |
get_player_game_log | Get game log for a player by their ID, season, and season type. Args: player_id: str The id of the player. season: str The season in the format 'YYYY-YY'. season_type: str The type of season. Pattern: "Regular Season", "Pre Season", "Playoffs", "All Star" |
get_team_details | Get details for a team by their ID. Details include championship awards, conference awards, division awards, background, history, and more. Args: team_id: str The id of the team. |
get_team_year_by_year_stats | Get year-by-year stats for a team by their ID. Args: team_id: str The id of the team. |
get_team_game_log | Get game log for a team by their ID, season, and season type. Args: team_id: str The id of the team. season: str The season in the format 'YYYY-YY'. season_type: str The type of season. Pattern: "Regular Season", "Pre Season", "Playoffs", "All Star" |
get_league_team_standings | Get league team standings for a given season and season type. Args: season: str The season in the format 'YYYY-YY'. season_type: str The type of season. Pattern: "Regular Season", "Pre Season" |
get_today_scoreboard | Get the current NBA scoreboard for today's games. The NBA scoreboard provides live data for games, including scores, game statuses, and team information. |
get_live_game_boxscore | Get the box score for a specific game by its ID. The box score includes live data for the game, such as scores, player stats, timeouts, and more. Args: game_id: str The ID of the game. |
get_live_game_play_by_play | Get the play-by-play data for a specific game by its ID. The play-by-play data includes detailed information about each play in the game. Args: game_id: str The ID of the game. |