The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Nba MCP Server listing page.
Access comprehensive NBA statistics via Model Context Protocol
A Model Context Protocol (MCP) server that provides access to live and historical NBA data including player stats, game scores, team information, and advanced analytics. v0.3.0: All 21 tools accept human names (not just IDs), return structured data + compact text, and default season to current. Optimized for both large and small LLM clients.
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
Or if you installed from source:
All tools accept human names — no need to resolve IDs first. Every response includes structured data + compact text.
get_player_info(player) - Player bio and details (accepts name or ID)get_player_stats(player, stat_type) - Season, career, game log, hustle, defense, or advanced statsget_player_awards(player) - All awards and accoladesget_shooting_data(player, data_type) - Shot chart or shooting splitsget_team_roster(team) - Team roster (accepts team name or ID)get_team_advanced_stats(team) - Team efficiency metrics (ORtg, DRtg, pace)get_schedule(team) - Upcoming gamesget_standings() - League standings by conferenceget_scoreboard(date?) - Games for a date (defaults to today)find_game(team1, team2?, date?) - Find game_id by team matchupget_game_details(game_id) - Live game info with team statsget_box_score(game_id) - Full box score with player statsget_play_by_play(game_id) - Play-by-play with timestampsget_game_rotation(game_id) - Player rotation/substitution dataget_leaders(category, scope) - Current season, all-time, or hustle leadersget_season_awards(season?) - Season MVP and major awardscompare_players(player1, player2) - Side-by-side player comparisondaily_summary(date?) - All games + scores for a dateteam_overview(team) - Roster + record + upcoming scheduleresolve_player_id(query) - Fuzzy match player name to IDresolve_team_id(query) - Fuzzy match team name to IDThis MCP server also returns public NBA CDN asset URLs (no API key) alongside IDs in several tool responses, so UI clients can render visuals.
https://cdn.nba.com/headshots/nba/latest/1040x760/{playerId}.pnghttps://cdn.nba.com/headshots/nba/latest/260x190/{playerId}.pnghttps://cdn.nba.com/logos/nba/{teamId}/global/L/logo.svgTools that include these URLs:
resolve_player_id, get_player_info, get_player_statsresolve_team_id, get_standings, get_team_rosterAll tools return a single JSON object (encoded as the MCP TextContent.text string). The top-level schema is:
tool_name: tool that ranarguments: arguments passedtext: compact 1-3 line summary (clean — no IDs or CDN URLs)data: structured dict with all machine-readable values (primary output for programmatic use)entities: extracted IDs + asset URLs for UI renderingThe server includes public CDN URLs (no API key required) in entities:
headshot_url: https://cdn.nba.com/headshots/nba/latest/1040x760/{playerId}.pngthumbnail_url: https://cdn.nba.com/headshots/nba/latest/260x190/{playerId}.pngteam_logo_url: https://cdn.nba.com/logos/nba/{teamId}/global/L/logo.svgControl logging verbosity with the NBA_MCP_LOG_LEVEL environment variable (default: WARNING):
In Claude Desktop config:
You can tune request behavior (helpful when agents do parallel tool calls) via env vars:
NBA_MCP_HTTP_TIMEOUT_SECONDS: Per-request timeout (default: 30)NBA_MCP_MAX_CONCURRENCY: Max concurrent outbound NBA API requests (default: 8)NBA_MCP_RETRIES: Retries for transient failures (429 / 5xx / network) (default: 2)NBA_MCP_CACHE_TTL_SECONDS: Cache TTL for stats endpoints (default: 120)NBA_MCP_LIVE_CACHE_TTL_SECONDS: Cache TTL for live endpoints (default: 5)NBA_MCP_TLS_VERIFY: TLS verification enabled (default: 1). If you see PermissionError reading CA bundles (common in sandboxed/macOS privacy contexts), set to 0.Example Claude Desktop config:
This server uses official NBA APIs:
Static security analysis:
This project uses Hatchling for builds. Recommended release steps:
Tip: for TestPyPI uploads, use twine upload --repository testpypi dist/*.
MIT License - see LICENSE file for details.
Contributions welcome! Please submit a Pull Request.
This project was created by Du'An Lightfoot, a developer passionate about AI agents, cloud infrastructure, and teaching in public.
Learn more and connect:
- 🌐 Website: duanlightfoot.com
- 📺 YouTube: @LabEveryday
- 🐙 GitHub: @labeveryday