@cyanheads/sports-mcp-server
Provides live and final scores, schedules, standings, team roster, and player data for MLB via the MLB StatsAPI.
Provides live and final scores, schedules, standings, team roster, and player data for NBA via ESPN's site API.
Provides live and final scores, schedules, standings (points system), team roster, and player data for NHL via ESPN's site API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@cyanheads/sports-mcp-servershow me today's MLB scores"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tools
Seven tools organized around what an agent needs — find a team or player, get today's scores, check the schedule, read the standings, or pull full team or player detail:
Tool | Description |
| Resolve a team name or partial name to its canonical record and source IDs. Use before any team-scoped query. |
| Resolve a player name to their canonical record via TheSportsDB. Disambiguation step before player-scoped queries. |
| Live and final scores for a league on a given date, optionally scoped to a specific team. |
| Upcoming and past fixtures for a team or league over a date range. |
| Current standings or league table for a league and season. |
| Team detail: active roster, last 5 results, next 3 fixtures, venue, and metadata. |
| Player detail: bio, current team, position, nationality, birth date, height/weight, and thumbnail. |
sports_find_team
Resolve a fuzzy team name to its canonical record across ESPN, MLB StatsAPI, and TheSportsDB.
Returns full name, league, logo URL, venue, and ESPN/MLB/TheSportsDB cross-reference IDs
Use before
sports_get_scores,sports_get_schedule,sports_get_standings, orsports_get_teamto get a validteam_nameFuzzy match on display name, abbreviation, or location (e.g. "Mariners", "SEA", "Seattle Seahawks")
sports_find_player
Resolve a player name to their canonical record.
Multi-sport player search via TheSportsDB
Optional
sportfilter to narrow ambiguous names (e.g. "Michael Jordan")Returns player ID, full name, current team, position, nationality, birth date, and thumbnail URL
Use the returned
player_idwithsports_get_playerfor full bio detail
sports_get_scores
Live and final scores for a league on a given date.
Routes NFL/NBA/NHL/soccer → ESPN; MLB → MLB StatsAPI (more authoritative)
Returns home/away teams, current score, status (
scheduled/in-progress/final), period/clock, and UTC start timeOmit
datefor today's games; useteam_nameto filter to one team's gameReturns
games: [], reason: '...'(not an error) when no games are scheduled
sports_get_schedule
Upcoming and past fixtures for a team or league over a date range.
Fetches full season from ESPN and applies
date_from/date_tofiltering server-sideReturns opponent, home/away flag, UTC date/time, venue, and result for completed games
Omit
team_namefor the full league calendar; provide it for a single team's fixtures
sports_get_standings
Current standings or league table for a league and season.
Returns rank, W/L (or points for soccer/NHL), division/conference, streak, and games behind
Omit
seasonfor the current season; pass a YYYY year for historical standingsNHL uses points system (
wins/otLosses/losses); soccer returnspointsfor the league table
sports_get_team
Composite team detail combining multiple source calls.
Active roster (or squad), last 5 results, next 3 fixtures, venue, and team metadata
MLB teams use MLB StatsAPI for roster and schedule; all others use ESPN
sports_get_player
Full player profile from TheSportsDB.
Bio, current team, position, nationality, birth date, height/weight, career description
Media thumbnail URL for display
Accepts
tsdb:-prefixed IDs (fromsports_find_player) or raw numeric TheSportsDB IDs
Related MCP server: Sports Hub MCP Server
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool definitions — single file per tool, framework handles registration and validation
Unified error handling — handlers throw, framework catches, classifies, and formats
Pluggable auth:
none,jwt,oauthSwappable storage backends:
in-memory,filesystem,Supabase,Cloudflare KV/R2/D1Structured logging with optional OpenTelemetry tracing
STDIO and Streamable HTTP transports
Sports-specific:
Three keyless sources — ESPN site API, MLB StatsAPI, TheSportsDB (free tier key
3) — no API credentials requiredLeague routing table internally routes each query to the best source per sport; agents never reference an upstream API
Normalized output types across all sources —
NormalizedGame,NormalizedTeam,NormalizedPlayer,NormalizedStanding— with source provenance on every recordGraceful degradation — empty scoreboards (off-season, no games) return
games: []with areasonstring, not an error
Agent-friendly output:
Source provenance on every record —
source: 'espn' | 'mlbstats' | 'thesportsdb'so agents can reason about data authorityStructured
reasonfield on empty score responses so agents can explain the result to usersCross-source IDs surfaced by
sports_find_team—espnId,mlbId,tsdbId— for seamless downstream routing without re-resolving names
Getting started
Add the following to your MCP client configuration file.
{
"mcpServers": {
"sports": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/sports-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"sports": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/sports-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"sports": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"ghcr.io/cyanheads/sports-mcp-server:latest"
]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.3.0 or higher (or Node.js v24+).
No API keys required — ESPN and MLB StatsAPI are fully keyless; TheSportsDB ships with a free public test key (
3).
Installation
Clone the repository:
git clone https://github.com/cyanheads/sports-mcp-server.gitNavigate into the directory:
cd sports-mcp-serverInstall dependencies:
bun installConfigure environment:
cp .env.example .env
# edit .env to override defaults (all optional)Configuration
Variable | Description | Default |
| TheSportsDB API key. Replace with a paid key for higher rate limits. |
|
| Transport: |
|
| Port for HTTP server. |
|
| Auth mode: |
|
| Log level (RFC 5424). |
|
| Directory for log files (Node.js only). |
|
| Enable OpenTelemetry instrumentation. |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t sports-mcp-server .
docker run --rm -p 3010:3010 sports-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/sports-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing ( |
| Normalized cross-source types and league routing table. |
| ESPN site API service — scores, schedules, standings, teams. |
| MLB StatsAPI service — scores, schedules, standings, rosters. |
| TheSportsDB service — player and team search/metadata. |
| Tool definitions ( |
| Unit and integration tests mirroring |
| Design doc and directory tree. |
Development guide
See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools via the barrel in
src/mcp-server/tools/definitions/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP Server that enables interaction with MLB scores and statistics via the SportsData.io MLB V3 Scores API, allowing users to access baseball data through natural language queries.Last updated
- AlicenseAqualityAmaintenanceA unified MCP server that aggregates 32 sports API providers into a single service, providing 336 tools for scores, stats, odds, esports, and more across 70+ sports.Last updated1008415MIT
- AlicenseAqualityBmaintenanceMCP server for NBA live data and stats, providing read-only tools to query live scores, box scores, player info, standings, and more from NBA.com.Last updated1561MIT
- Alicense-qualityCmaintenanceESPN MCP — keyless multi-sport live scores, teams, and news via ESPN's public site API.Last updated23MIT
Related MCP Connectors
ESPN MCP — keyless multi-sport live scores, teams, and news via ESPN's public site API.
TheSportsDB MCP — sports catalog (teams, players, events)
Sports MCP — wraps TheSportsDB API (free tier, test key 3, no auth required)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cyanheads/sports-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server