Sports MCP Server
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., "@Sports MCP ServerWhat are the odds for the Lakers vs Celtics game tonight?"
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.
šļø Sports MCP Server
A Model Context Protocol (MCP) server that unifies The Odds API and SportMonks Football API v3 into a single tool surface for Claude Desktop and Claude Code.
What This Does
Source | Coverage | Tools |
The Odds API | All sports ā NBA, NFL, NHL, NCAAM, NCAAF, Soccer, Tennis, MMA, Golf, MLB | 10 tools: odds, scores, events, markets, participants, historical |
SportMonks | Football (soccer) deep data ā EPL, La Liga, Bundesliga, Ligue 1, Serie A, Champions League, etc. | 18 tools: fixtures, standings, statistics, xG, predictions, odds, livescores, squads |
Total: 28 tools available to Claude via MCP.
Related MCP server: AltSportsData MCP Server
Quick Start
1. Install dependencies
cd sports-mcp-server
npm install
npm run build2. Set your API keys
You'll configure these in the Claude Desktop config (step 3), but for testing:
export ODDS_API_KEY="your-odds-api-key-here"
export SPORTMONKS_TOKEN="your-sportmonks-token-here"3. Configure Claude Desktop
Add this to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"sports-data": {
"command": "node",
"args": ["/FULL/PATH/TO/sports-mcp-server/dist/index.js"],
"env": {
"ODDS_API_KEY": "your-odds-api-key-here",
"SPORTMONKS_TOKEN": "your-sportmonks-token-here"
}
}
}
}ā ļø Replace
/FULL/PATH/TO/with the actual absolute path to the project.
4. Restart Claude Desktop
After saving the config, restart Claude Desktop. You should see the sports tools available in the MCP tools menu.
For Claude.ai (Web / Chrome) ā ā This is what you want
The web app needs an HTTP server, not stdio. Here's how:
Step 1: Build & start the HTTP server
cd sports-mcp-server
npm install
npm run build
# Start the HTTP server with your API keys
ODDS_API_KEY=your-key-here SPORTMONKS_TOKEN=your-token-here npm run start:httpYou should see:
šļø Sports MCP Server (HTTP/SSE) running on http://localhost:3456
Tools: 10 Odds API + 18 SportMonks = 28 total
Odds API key: ā
configured
SportMonks token: ā
configuredStep 2: Connect in Claude.ai
Go to claude.ai ā Settings (bottom-left gear icon)
Click Integrations in the left sidebar
Click Add Custom Integration
Set:
Name:
Sports DataURL:
http://localhost:3456/sse
Save and enable it
That's it ā the 28 tools are now available in your Claude.ai conversations.
Optional: Protect with auth token
ODDS_API_KEY=xxx SPORTMONKS_TOKEN=xxx MCP_AUTH_TOKEN=my-secret npm run start:httpThen add the token in the integration config as a Bearer token.
Optional: Run on a remote server
If you want it always-on (e.g. on a VPS or Render/Railway):
Deploy the project to your server
Run
npm run start:httpwith your env varsUse
https://your-server.com/sseas the integration URLSet
MCP_AUTH_TOKENfor security
Keep it running (local)
Use pm2 or a simple background process:
# Install pm2 globally
npm install -g pm2
# Start as a daemon
ODDS_API_KEY=xxx SPORTMONKS_TOKEN=xxx pm2 start dist/server-http.js --name sports-mcp
# Auto-restart on reboot
pm2 startup
pm2 saveFor Claude Desktop (local app)
See the config under Quick Start above ā uses stdio transport via dist/index.js.
For Claude Code
claude mcp add sports-data node /FULL/PATH/TO/sports-mcp-server/dist/index.js \
-e ODDS_API_KEY=your-key \
-e SPORTMONKS_TOKEN=your-tokenTool Reference
The Odds API Tools (prefix: odds_)
Tool | Description | Quota Cost |
| List all available sports and their keys | Free |
| List upcoming/live events for a sport | Free |
| Primary tool ā get odds for upcoming/live games (ML, spreads, totals) | markets Ć regions |
| Live scores + recently completed games | 1-2 |
| Odds for a single event ā supports ALL markets including player props | unique markets Ć regions |
| Discover available market keys for an event | 1 |
| List teams/players for a sport | 1 |
| Historical odds snapshot at a timestamp | 10 Ć markets Ć regions |
| Historical events at a timestamp | 1 |
| Historical odds for single event ā all markets | 10 Ć markets Ć regions |
Common sport keys: basketball_nba, basketball_ncaab, americanfootball_nfl, americanfootball_ncaaf, icehockey_nhl, soccer_epl, soccer_germany_bundesliga, soccer_spain_la_liga, soccer_france_ligue_one, tennis_atp_*, tennis_wta_*
SportMonks Tools (prefix: sm_)
Tool | Description |
| Live soccer scores (inplay / all today / latest updated) |
| Fixtures by ID, date, date range, team, H2H, or search |
| Leagues ā all, by ID, live, by country, by team, search |
| Seasons ā all, by ID, by team, search |
| League tables ā by season, round, or live |
| Teams ā all, by ID, country, season, search |
| Players ā by ID, country, search |
| Team squad (current or by season) |
| Season/stage/round statistics for teams or players |
| Top scorers by season or stage |
| Probabilities and value bets (SM's own model) |
| Expected goals (xG) by team or player |
| Pre-match odds by fixture, bookmaker, or market |
| In-play odds by fixture, bookmaker, or market |
| Match schedules by season, team, or both |
| Round data by season or ID |
| List available betting markets |
| List available bookmakers |
Using Includes (SportMonks)
SportMonks tools support an include parameter for enriched responses:
include: "participants,scores,league,statistics,events"
include: "player,position,teams"
include: "fixtures,rounds"Using Filters (SportMonks)
Some endpoints support filters:
filters: "fixtureLeagues:8" # Filter by league ID
filters: "eventTypes:14,18" # Filter event typesExample Prompts
Once configured, you can ask Claude things like:
"Get me tonight's NBA odds from DraftKings and FanDuel ā spreads, moneylines, and totals"
"Pull EPL standings for this season"
"What are the live soccer scores right now?"
"Compare the historical odds movement for the Lakers game last Tuesday"
"Get Arsenal's xG data and current squad"
"Show me value bets from SportMonks predictions for today's fixtures"
"Get player props available for tonight's NFL game"
Architecture
src/
āāā index.ts # MCP server entry ā stdio transport (Claude Desktop / Claude Code)
āāā server-http.ts # MCP server entry ā HTTP/SSE transport (claude.ai web)
āāā odds-api.ts # The Odds API tool definitions (10 tools)
āāā sportmonks.ts # SportMonks tool definitions (18 tools)
āāā http.ts # Shared HTTP utility (fetch + URL builder)License
MIT
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
- AlicenseAqualityCmaintenanceMCP server for FIFA World Cup 2026 data: matches, teams, venues, city guides, fan zones, visa info, injuries, odds, standings, bracket, and historical matchups. 18 tools, zero external API dependencies.Last updated1842235MIT
- AlicenseBqualityDmaintenanceMCP-compatible server that gives AI agents access to alternative sports data across 30+ leagues ā odds, events, probabilities, settlement, and futures for prediction markets, DFS platforms, and sportsbooks.Last updated2932MIT
- AlicenseBqualityAmaintenanceAn MCP server that exposes sports-data APIs from multiple providers (AFL, Sportsbet, Entain, NRL) as interchangeable tools, enabling cross-provider odds and stats comparison.Last updated1001MIT
- 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
Related MCP Connectors
The Odds API MCP ā sportsbook odds across 70+ books, 30+ leagues
Sports Game Odds MCP ā wraps the Sports Game Odds API (sportsgameodds.com)
API-Football MCP ā comprehensive soccer/football data
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/killautsav-tech/sports-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server