Blaze Sports Intel · Model Context Protocol Server

College Baseball Intelligence,
Wired for AI.

One endpoint gives your Claude, Cursor, or Cline agent every D1 program's live score, sabermetric rollup, and weekly Top 25 movement — with source attribution on every response.

Coverage

330 D1 Teams

Every Power 4 and mid-major program.

Sabermetrics

wOBA · wRC+ · FIP · ERA-

Park-adjusted and D1-calibrated.

Auth

Free, No Key Required

30 requests per minute per caller.

Connect from Claude Desktop

Add this block to your Claude Desktop config at ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows). Restart Claude Desktop, and the nine tools appear in the tools picker.

{
  "mcpServers": {
    "blaze-sports-intel": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://sabermetrics.blazesportsintel.com/mcp"]
    }
  }
}

Cursor, Cline, and other MCP clients

Any MCP-compatible client can reach this server over streamable HTTP. Point it at the remote URL, or use mcp-remote as a bridge if the client only speaks stdio locally.

Direct URL

https://sabermetrics.blazesportsintel.com/mcp

Probe from the command line

curl -sX POST https://sabermetrics.blazesportsintel.com/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' \
  | jq '.result.tools | map(.name)'

Nine tools

NameDescription
bsi_get_scoreboardToday's D1 scores and game results — live and final, with venue and status.
bsi_get_standingsConference standings with wins, losses, run differential, streak, and record.
bsi_get_rankingsThe current D1Baseball Top 25 with movement.
bsi_get_team_sabermetricsAdvanced batting and pitching metrics for a team: wOBA, wRC+, FIP, ERA-, BABIP, ISO.
bsi_get_leaderboardTop hitters or pitchers by an advanced metric, filterable by conference.
bsi_get_conference_power_indexSOS-adjusted conference rankings from standings and run differential.
bsi_get_player_statsSearch for a player by name and get batting or pitching stats, position, team.
bsi_get_team_scheduleFull team schedule — past results and upcoming games.
bsi_get_match_detailMatch detail with venue, weather, win predictions, play-by-play, and team stats.

Or call REST directly

If you'd rather ship plain JSON to a dashboard, every MCP tool mirrors to a REST endpoint under /v1/*. Full spec at /docs.

Where the data comes from

Highlightly — primary live-score and venue source. All 330 D1 programs.

BSI Savant — advanced metrics computed on a 6-hour cron. wOBA, wRC+, FIP, ERA- calibrated against D1 linear weights and park factors.

ESPN Site API — rankings and schedule fallback.

Every response carries a meta block with source and fetched_at, plus an X-Request-Id header for tracing.

Interactive Docs →OpenAPI SpecHealthBrowse BSI