Sports Intelligence Put Simply
Read-only tools covering every NCAA Division I college baseball program — live scores, standings, rankings, schedules, box scores, and advanced sabermetrics. One endpoint for AI clients, the same data via REST for everyone else.
Connect from Claude Desktop
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"blaze-sports-intel": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://sabermetrics.blazesportsintel.com/mcp"]
}
}
}
Restart Claude Desktop. The college baseball tools will appear in the tools picker.
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)'
Tools
| Name | Description |
|---|---|
| bsi_get_scoreboard | Get today's college baseball scores and game results. Returns live and final games with team names, scores, venue, and game status. Covers every NCAA Division I program. |
| bsi_get_standings | Get current college baseball conference standings including wins, losses, win percentage, runs scored, runs allowed, run differential, streak, and games back. |
| bsi_get_rankings | Get the latest national college baseball rankings (Top 25). Returns rank, team, record, and trend. |
| bsi_get_team_sabermetrics | Get advanced sabermetric batting and pitching metrics for a college baseball team: wOBA, wRC+, FIP, ERA-, BABIP, ISO, and more. |
| bsi_get_leaderboard | Get the top college baseball hitters or pitchers by an advanced metric. Returns a ranked leaderboard with player names, teams, and stat values. |
| bsi_get_conference_power_index | Get a naive Conference Power Index — D1 conferences ranked by win% plus a run-differential adjustment, computed from standings (single-team and zero-game conferences excluded). NOT strength-of-schedule weighted; read it as a rough sort, not an authoritative power ranking. Uses Highlightly standings when available, ESPN otherwise. |
| bsi_get_player_stats | Search for a college baseball player by name and get their stats, position, team, and headshot. Searches BSI sabermetric data. |
| bsi_get_team_schedule | Get the full schedule for a college baseball team, including past results and upcoming games. |
| bsi_get_match_detail | Get detailed information about a specific college baseball game including venue, weather, win predictions, play-by-play, and team stats. Use a match ID from the scoreboard. |
| bsi_search_intel | Search the open web for college-baseball news, scouting reports, beat-writer coverage, and analytical commentary. Complements the stats tools — use this when a question needs narrative context, not just numbers. Defaults to trusted college-baseball domains (d1baseball.com, baseballamerica.com, ESPN, NCAA.com, etc.). Provider: Tavily today, with Exa wired as primary when EXA_API_KEY is configured. |
REST API — college baseball
| GET /v1/scoreboard | Live scores — optional ?date, ?conference |
| GET /v1/standings | Conference standings — ?conference |
| GET /v1/rankings | National Top 25 |
| GET /v1/players | Player search — ?name, ?team |
| GET /v1/teams/:team/stats | Team sabermetrics |
| GET /v1/teams/:team/schedule | Team schedule |
| GET /v1/leaderboard | Sabermetric leaders — ?metric, ?type, ?limit, ?conference |
| GET /v1/power-index | Conference Power Index |
| GET /v1/matches/:id | Match detail — venue, weather, predictions |
Data sources
College baseball: the MLB/College Baseball API via RapidAPI (full D1 coverage) + BSI Savant (sabermetrics recomputed every 6h) + ESPN fallback.
Every response carries a meta block with source attribution and fetch timestamp, plus an X-Request-Id header.
Limits
30 requests per minute per bearer token or IP. Read-only — all tools are idempotent and open-world. Cache TTLs: scoreboard 60s, standings 5min, team sabermetrics 6hr.