hudl-mcp-server

hudl-mcp-server

An MCP server that connects Claude Desktop to Hudl, enabling live access to team stats, player stats, and game results through natural language queries.

Category
Visit Server

README

hudl-mcp-server

An MCP (Model Context Protocol) server that connects Claude Desktop to Hudl, giving Claude live access to team stats, player stats, and game results through natural language.


What It Does

Ask Claude questions like:

  • "Who is the leading scorer this season?"
  • "What's our record against ranked opponents?"
  • "Show me player stats for our last game against Beaverton."
  • "How did our faceoff percentage compare between 2023 and 2024?"

Claude calls the MCP tools, retrieves live data from Hudl, and returns structured analysis — no copy-pasting, no manual exports.


How It Works

The server uses Playwright to authenticate with Hudl and retrieve data via a combination of page scraping and CSV export interception. A session cookie is cached after the first login so subsequent calls are fast. If Hudl requires 2FA, the browser launches in visible mode so you can complete it manually.

Claude Desktop  →  MCP Tools  →  Hudl (via Playwright)
                ←  JSON data  ←

Available Tools

Tool Description
list_seasons Lists all available seasons with IDs, sorted newest first
get_game_results Season game results — scores, opponents, home/away, W/L
get_player_stats Full player stat export — goals, assists, shots, faceoffs, turnovers, saves, and more
get_team_stats Aggregated team stats — record, goals scored/allowed, win %
get_game_stats Per-game player stats for a single specific game
get_box_score Team-level box score comparison (AHS vs opponent) for a single game or full season
clear_cache Invalidate cached data — all, by season label, or by game

All tools accept an optional season parameter to query historical seasons. All tools accept an optional refresh: true parameter to bypass cache and re-fetch from Hudl.


Project Structure

src/
  auth/
    hudlAuth.ts           — Hudl login flow, session restore, 2FA handling
  browser/
    browserManager.ts     — Playwright browser lifecycle
    networkInterceptor.ts — API endpoint discovery utilities
  cache/
    sessionCache.ts       — Read/write cached session cookies
  fetchers/
    reportsCsvFetcher.ts  — Navigate to reports page, intercept CSV export
  scrapers/
    gameResultsScraper.ts — Game results from team timeline
    gameStatsScraper.ts   — Per-game player stats with fuzzy opponent matching
    playerStatsScraper.ts — Full player stats via CSV interception
    teamStatsScraper.ts   — Team stats via CSV interception
  config.ts               — Environment variable loading
  types.ts                — TypeScript interfaces
  server.ts               — MCP server definition and tool handlers
  index.ts                — Entry point
  cli.ts                  — Interactive developer test harness

Setup

1. Install dependencies

npm install

This also runs playwright install chromium automatically.

2. Configure environment variables

Copy .env.example to .env and fill in your credentials:

HUDL_EMAIL=your@email.com
HUDL_PASSWORD=yourpassword
HUDL_TEAM_ID=your_team_id
HUDL_CACHE_DIR=C:/Users/<you>/hudl-mcp-server/.cache

To find your HUDL_TEAM_ID, navigate to your team page in Hudl — it's in the URL.

HUDL_CACHE_DIR should be an absolute path. Setting it explicitly ensures the cache is always written to the same location regardless of what directory the process is launched from.

3. Build

npm run build

4. Configure Claude Desktop

Add the server to your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

{
  "mcpServers": {
    "hudl": {
      "command": "node",
      "args": ["C:/path/to/hudl-mcp-server/dist/index.js"]
    }
  }
}

Restart Claude Desktop. The Hudl tools will be available in your next conversation.


Testing Without Claude Desktop

A CLI lets you exercise each tool directly from the terminal:

npm run cli

Interactive menu options:

Key Action
1–6 Call each MCP tool directly and inspect the raw JSON response
c List all cache entries (key, age, TTL)
ci Inspect a cache entry — select by number, view full JSON payload
cc Clear cache — all entries, by season label, or by keyword
w Warm season — bulk-fetch and permanently cache all game stats and box scores for a season
t Smoke test — run all tools and report pass/fail

Warming the cache for prior seasons

After a fresh install (or account switch), run the warm command to pre-populate the cache for completed prior seasons. This avoids re-fetching 30+ games every time you run a report:

npm run cli → w → enter "2024-2025" → y (prior/completed)
npm run cli → w → enter "2023-2024" → y (prior/completed)

Takes ~10 minutes per season on first run. Subsequent runs skip already-cached entries.


Notes

  • First call per session may take 10–20 seconds while the browser starts and authenticates
  • Session is cached in .hudl-session.json — subsequent calls reuse the session without re-logging in
  • 2FA: if Hudl prompts for verification, the browser will open visibly so you can complete it manually
  • Read-only: the server never modifies any data in Hudl
  • .env and .hudl-session.json are excluded from version control — never commit credentials

Related

  • alc-lacrosse-reports — companion repo that uses this MCP server to generate branded PDF game and season reports

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured