Blaze Sports Intel · MCP Server v4.0.0

Sports Intelligence Put Simply

Read-only tools for sourced college baseball scores, standings, rankings, schedules, match detail, traditional player stats, and web context.

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

NameDescription
bsi_get_scoreboard Get college baseball scores and game results returned by the configured providers. Includes team names, scores, venue, game status, source, and fetch time.
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 national college baseball Top 25 returned by the rankings source. Includes rank, team, record, movement, source, and fetch time.
bsi_get_player_stats Search supported source records for a college baseball player by name. Returns identity, team, position, and traditional batting or pitching stats when the source provides them.
bsi_get_team_schedule Get schedule records returned for a college baseball team, including past results and upcoming games when the source provides them.
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. Use this when a question needs narrative context. Defaults to trusted college-baseball domains and returns the provider in response metadata.

REST API: college baseball

GET /v1/scoreboardLive scores: optional ?date, ?conference
GET /v1/standingsConference standings: ?conference
GET /v1/rankingsNational Top 25
GET /v1/playersPlayer search: ?name, ?team
GET /v1/teams/:team/scheduleTeam schedule
GET /v1/matches/:idMatch detail: venue, weather, predictions

Data sources

College baseball: the College Baseball API via RapidAPI, BSI's source-tagged player records, and 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. All advertised tools are read-only. Use each response's metadata to state source and freshness.