Sports MCP Server

Live sports scores and stats from NBA, NFL, and NHL

⚽ Sports MCP — AI Scores & Analytics avatar

⚽ Sports MCP — AI Scores & Analytics

Pricing

from $10.00 / 1,000 results

Try for free

Go to Apify Store

⚽ Sports MCP — AI Scores & Analytics

⚽ Sports MCP — AI Scores & Analytics

nexgendata/sports-mcp-server

Try for free

Ask questions about this Actor

MCP server for AI agents to access NBA, NFL, NHL live scores & historical data. Connect Claude, GPT or any AI to sports intelligence. 4 tools for sports analytics.

Pricing

Rating

0.0

(0)

Developer

Stephan Corbeil

Stephan Corbeil

Maintained by Community

Actor stats

0

Bookmarked

10

Total users

4

Monthly active users

2 days ago

Last modified

Categories

AI

Social media

MCP servers

README

Pricing

Endpoints

Issues

🏈 Sports MCP Server — Live NBA, NFL, NHL Scores & Stats for Claude / ChatGPT

Connect AI agents to live sports data through the Model Context Protocol — NBA, NFL, NHL scoreboards, team + player stats, schedules, and standings. A drop-in alternative to TheSportsDB, MySportsFeeds ($29-$299/mo), the private ESPN API, and enterprise Sportradar contracts.

Why This MCP Server Beats ESPN API, TheSportsDB, MySportsFeeds & Sportradar

FeatureNexGenData Sports MCPESPN Hidden APITheSportsDBMySportsFeedsSportradar
CostPay-per-event, ~$0.002 per tool callOfficially unavailableFree / $4/mo donate$29 - $299 / monthEnterprise contract
AI agent integrationNative MCP — Claude Desktop, CursorNoneNoneNoneNone
CoverageNBA, NFL, NHL (more on roadmap)All major US sportsAll major US + globalNBA, NFL, NHL, MLBAll sports globally
ReliabilityApify-managed, auto-retryUnofficial, breaksCommunity-maintainedSLA on paid tierEnterprise SLA
AuthApify tokenNone (undocumented)Optional API keyAPI keyEnterprise SSO
Time-to-first-call< 60 secondsReverse-engineering neededFree, sometimes stalePlan signupSales cycle
OutputStructured JSON for LLM toolsInconsistent JSONJSONJSONXML / JSON

Most sports-analytics teams pick this MCP server because it is the only documented way to give an AI agent live access to NBA + NFL + NHL scoreboards without paying MySportsFeeds' monthly fee or signing a Sportradar enterprise contract.

What You Get

Tools exposed to your AI agent:

  • get_nba_scoreboard — live scores, quarter / clock, lead change, top scorer
  • get_nfl_scoreboard — live scores, quarter / time, possession, redzone flag
  • get_nhl_scoreboard — live scores, period / clock, power-play status
  • get_team_schedule — upcoming + past games for any team
  • get_team_standings — division / conference standings
  • get_player_stats — current-season stats for any active player
  • get_play_by_play — chronological play log for any game in progress or recently finished

All responses are clean JSON tuned for LLM function-calling — no scraping, no ESPN HTML parsing.

Use Cases

  • Fan-engagement chatbots — Discord / Slack bots answer "what's the Lakers score?" without dev overhead
  • Sports betting research — agents pull live scoreboards + standings to ground LLM predictions
  • Fantasy-sports assistants — Claude monitors player performance in real-time and pings on injuries
  • Sports media dashboards — auto-generate game-recap copy as soon as a game ends
  • DraftKings / FanDuel power-users — daily scoreboard scrape into a personal DFS model
  • Broadcaster prep — agents draft talking points from standings + last-meeting history
  • Twitter / X bots — auto-tweet score updates with structured data, no scraping ESPN

Quick Start


from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")

run = client.actor("nexgendata/sports-mcp-server").call(run_input={

    "tool": "get_nba_scoreboard",

    "params": {"date": "2026-05-14"}

})

for game in client.dataset(run["defaultDatasetId"]).iterate_items():

    print(game["home_team"], game["home_score"], "vs", game["away_team"], game["away_score"])


Or wire this MCP server into Claude Desktop and ask: "Who's leading the East? Show top 5 by win pct."

Pricing

Pay-per-event:

  • Actor Start: ~$0.0002
  • Tool call: $0.002 per call

A typical fantasy-sports assistant making 10-30 calls per session spends $0.02 - $0.06. Compare to MySportsFeeds Pro at $29/mo flat.

Related NexGenData Actors

Use caseActor
Direct NBA scoreboard scraper (no MCP wrapper)NBA Scoreboard Scraper
Direct NHL scoreboard scraperNHL Scoreboard Scraper
Direct NFL scoreboard scraperNFL Scoreboard Scraper
News + media monitoring for AI agentsNews MCP Server
Finance + market data for AI agentsFinance MCP Server
Real-estate property + listings for AI agentsReal Estate MCP Server
Developer ecosystem data for AI agentsDeveloper Tools MCP Server
AI sentiment analysis (game-day social monitoring)AI Sentiment Analyzer

FAQ

**Q: Is this an official ESPN / NBA / NFL feed?**No. The server aggregates publicly available scoreboards from each league's public-facing endpoints. For betting-grade SLAs, use Sportradar.

**Q: How latency is the data?**NBA + NFL + NHL scoreboards refresh on a 30-second poll cycle — fine for chat, fantasy, and recap workflows. Not designed for sub-second high-frequency betting.

**Q: Are MLB, soccer, golf supported?**Not yet — the roadmap covers MLB, MLS, Premier League, NCAAB, NCAAF, F1. Open an issue with your priority.

**Q: Can the AI agent call this from Cursor / Cline / Claude Desktop?**Yes — any MCP-compatible client works. Point your config at this actor's Apify endpoint.

**Q: Does it expose play-by-play in real time?**Yes — get_play_by_play returns the full ordered play log. Latency matches the scoreboard poll cycle.

**Q: Are historical games supported?**Recent games (current season) are available. For multi-year historical archives, schedule the actor and store snapshots.

**Q: How reliable is it during playoffs / Super Bowl traffic?**Apify auto-scales the actor under load. We've stress-tested through one full playoff cycle.

About NexGenData

NexGenData publishes 260+ buyer-intent actors plus a family of MCP servers (finance, news, sports, real-estate, developer tools, academic research, premium data) for AI agent workflows. All pay-per-result. Browse the full catalog at https://apify.com/nexgendata?fpr=2ayu9b


How NexGenData Pricing Works

Every NexGenData actor uses pay-per-event pricing — you only pay for results that actually land in your dataset. No monthly minimum, no seat fees, no surprise overage bills.

  • Actor Start: a single-event charge each time you spin the actor up (scaled to memory size)
  • Result: charged per item written to the default dataset
  • No charge for retries, internal proxy rotation, or failed sub-requests — those are absorbed by the platform

If you only need the data once a quarter, you only pay once a quarter. If you scale to millions of records, the unit cost stays the same.

Apify Platform Bonus

New to Apify? Sign up with the NexGenData referral link — you get free platform credits on signup (enough for several thousand free results) and you help fund the maintenance of this actor fleet.

Integration Surface

Every actor in the NexGenData catalog can be triggered from:

  • Apify console — point-and-click run
  • Apify API — REST + webhooks
  • Apify Python / JS SDKs — programmatic batch
  • Zapier, Make.com, n8n — official integrations
  • MCP — many actors are exposed as MCP tools for Claude / ChatGPT / Cursor agents
  • Schedules — built-in cron for daily / weekly / monthly runs
  • Webhooks — POST results to any HTTPS endpoint on dataset write

Support

NexGenData maintains 260+ Apify actors and ships updates regularly. Bug reports via the Apify console issues tab get a response within 24 hours. Roadmap requests are welcome — high-demand features ship in the next version.

🏠 Home: thenextgennexus.com 📦 Full catalog: apify.com/nexgendata

You might also like

ESPN MCP Server - Live Sports Scores & Stats for AI avatar

ESPN MCP Server - Live Sports Scores & Stats for AI

mrbridge/espn-mcp-server

12 MCP tools for ESPN sports data: live scores, standings, game analysis, betting odds, player stats & news across 25+ leagues (NFL, NBA, MLB, NHL, Premier League, F1, UFC...). Works with Claude Code, Claude Desktop & ChatGPT.

User avatar

MrBridge

53

5.0

DraftKings Scraper avatar

DraftKings Scraper

parseforge/draftkings-scraper

Scrape DraftKings DFS contests, player salaries, and sportsbook betting odds with automated data collection. Access near real-time information for NFL, NBA, MLB, NHL, and more sports, delivering structured data for analysis, modeling, and sports research workflows.

ParseForge

63

5.0

Bet365 Live Scores API | Real-Time Sports Data, 13 Sports avatar

Bet365 Live Scores API | Real-Time Sports Data, 13 Sports

zen-studio/bet365-live-scores

Real-time sports scores via REST API. Live games, competition results, full match detail with lineups, statistics, and events. Football, basketball, tennis, hockey, and 9 more sports. 2600+ competitions. Multi-language support.

Zen Studio

6

SportIntel MCP

epicmotionsd/sportintel-mcp

is the first AI-powered sports analytics Actor built on the Model Context Protocol (MCP). It provides explainable player projections, lineup optimization, and real-time betting odds for Daily Fantasy Sports (DFS) and sports betting.

Shawn Sonnier

17

ESPN Sports Scores & Schedules - NBA, NFL, MLB, NHL, MLS, EPL.. avatar

ESPN Sports Scores & Schedules - NBA, NFL, MLB, NHL, MLS, EPL..

hgservices/apify-actor-espn

Get live scores, schedules, and game results from ESPN — covering NBA, NFL, MLB, NHL, MLS, EPL, NCAA, and more. No API key needed. Filter by team, date, or status. Output includes scores, venues, broadcasts, and team details.

Harish Garg

14

5.0

PrizePicks Player Props Scraper - Real-Time Lines avatar

PrizePicks Player Props Scraper - Real-Time Lines

zen-studio/prizepicks-player-props

Extract real-time player prop lines from PrizePicks across 29 leagues. Get over/under lines, odds tiers, player stats, team matchups, and game schedules. NBA, MLB, NHL, Soccer, Tennis, and esports. Filter by league or player name. 51 fields per prop. JSON, CSV, Excel export.

Zen Studio

129

Sports Odds Scraper: DraftKings, FanDuel, Pinnacle Arbitrage avatar

Sports Odds Scraper: DraftKings, FanDuel, Pinnacle Arbitrage

scrapemint/sports-odds-movement-tracker

Track live sports betting odds across 40+ sportsbooks (DraftKings, FanDuel, Pinnacle, Bet365). Filter by sport, region, market. Detect arbitrage and best price edges. Returns deduped JSON with moneyline, spread, and total lines.

Ken M

19

Underdog Fantasy Player Props API - Lines & Odds avatar

Underdog Fantasy Player Props API - Lines & Odds

zen-studio/underdog-player-props

Scrape real-time player prop lines and odds from Underdog Fantasy API across 16 leagues. Get over/under lines, American and decimal odds, payout multipliers, player stats, team matchups, and game schedules. Filter by league, player name, stat type, or team. 45 fields per prop. JSON & CSV export.

Zen Studio

36

BetMGM Odds API | Real-Time Lines & Player Props avatar

BetMGM Odds API | Real-Time Lines & Player Props

zen-studio/betmgm-odds

Extract real-time BetMGM sportsbook odds for 22 sports across 18 US states. Get moneylines, spreads, totals, player props, and futures in decimal, American, and fractional formats. Always-on HTTP endpoints plus batch CSV/JSON export. NBA, NFL, MLB, NHL, EPL, and 500+ leagues. No login required.

Zen Studio

10

Draft Kings scraper avatar

Draft Kings scraper

syntellect_ai/draftkings-api-actor

SPORTS BETTING DATA DRAFT KINGS contest data, player DFS salaries, and sportsbook betting lines in seconds. No Draft Kings account required. Proxy rotation included. Built for DFS optimizers, sports betting models, over 350,000 results per month DRAFT KINGS SCRAPER IS #1 DFS data source

christopher athans crow

206

5.0

Related Servers

NotebookLM Web Importer

Import web pages and YouTube videos to NotebookLM with one click. Trusted by 200,000+ users.

Install Chrome Extension