Back to Browse

Odds Api MCP Server

Developer ToolsModerate7.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Live sports betting odds from 265+ bookmakers across 34 sports, with value bets and arbitrage.

About

Live sports betting odds from 265+ bookmakers across 34 sports, with value bets and arbitrage.

Security Report

7.2
Moderate7.2Low Risk

This is a well-structured MCP server for the Odds-API.io sports betting API. The code is clean, properly authenticated via environment variables, and permissions align well with its stated purpose. All 22 tools are properly documented and tested. Minor code quality observations exist but do not indicate security vulnerabilities. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

4 files analyzed · 5 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Odds-API.io API key (free tier available, no credit card)Required

Environment variable: ODDS_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-odds-api-io-odds-api-mcp-server": {
      "env": {
        "ODDS_API_KEY": "your-odds-api-key-here"
      },
      "args": [
        "-y",
        "odds-api-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Odds-API.io MCP Server

npm version license: MIT

Model Context Protocol (MCP) server for Odds-API.io - providing AI tools like Claude, Cursor, and VS Code with direct access to sports betting odds data.

Full AI-tooling docs: docs.odds-api.io/ai-vibe-coding

Features

  • 22 API tools covering the full Odds-API.io v3 surface: sports, events, odds, historical data, value bets, arbitrage, dropping odds, and more
  • Documentation resources for AI context
  • Real-time data from 265+ bookmakers across 34 sports

Quick Start

One-Click Install (Claude Desktop)

Download the latest .mcpb file from Releases and open it. Claude Desktop will prompt you for your API key.

Claude Code CLI

claude mcp add odds-api --env ODDS_API_KEY="your-api-key" -- npx -y odds-api-mcp-server

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "odds-api": {
      "command": "npx",
      "args": ["-y", "odds-api-mcp-server"],
      "env": {
        "ODDS_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json in your project or global config):

{
  "mcpServers": {
    "odds-api": {
      "command": "npx",
      "args": ["-y", "odds-api-mcp-server"],
      "env": {
        "ODDS_API_KEY": "your-api-key"
      }
    }
  }
}

VS Code

Add to your VS Code settings (.vscode/mcp.json):

{
  "servers": {
    "odds-api": {
      "command": "npx",
      "args": ["-y", "odds-api-mcp-server"],
      "env": {
        "ODDS_API_KEY": "your-api-key"
      }
    }
  }
}

Global Install (alternative)

npm install -g odds-api-mcp-server

Then use odds-api-mcp as the command instead of npx -y odds-api-mcp-server.

Configuration

VariableRequiredDescription
ODDS_API_KEYYesYour API key from odds-api.io

Available Tools

Sports & Leagues

ToolDescription
get_sportsList all available sports with slugs
get_leaguesGet leagues for a sport (with optional all flag for inactive leagues)

Bookmakers

ToolDescription
get_bookmakersList all supported bookmakers
get_selected_bookmakersGet your currently selected bookmakers
select_bookmakersAdd bookmakers to your selection
clear_selected_bookmakersClear all selected bookmakers (once per 12h)

Events

ToolDescription
get_eventsGet events with filtering (league, status, date range, participant, bookmaker, pagination)
get_eventGet a single event by ID
get_live_eventsGet currently live events
search_eventsSearch events by team name or text

Odds

ToolDescription
get_oddsGet odds for an event from selected bookmakers
get_multi_oddsGet odds for up to 10 events in one call
get_odds_movementsGet historical line movements for a market
get_updated_oddsGet recently changed odds (polling)

Historical

ToolDescription
get_historical_eventsGet finished events for a sport/league/date range
get_historical_oddsGet closing odds and scores for finished events

Betting Analytics

ToolDescription
get_value_betsGet positive EV opportunities for a bookmaker
get_arbitrage_betsGet arbitrage opportunities with optimal stakes
get_dropping_oddsTrack sharp bookmaker line movements by sport, league, market, and time window

Participants

ToolDescription
get_participantsGet teams/participants for a sport
get_participantGet a single participant by ID

Reference

ToolDescription
get_documentationFetch full API documentation

Resources

Resource URIDescription
odds-api://documentationComplete API documentation
odds-api://openapiOpenAPI/Swagger specification

Example Usage

Once configured, ask your AI assistant things like:

  • "What sports are available on Odds-API?"
  • "Show me upcoming Premier League matches"
  • "Get odds for the next Arsenal match from Bet365 and SingBet"
  • "Find value bets on Bet365 with event details"
  • "Are there any arbitrage opportunities between Bet365 and Unibet?"
  • "Show me how the odds moved for event 12345 on the spread market"
  • "Get historical results for La Liga in January 2026"
  • "Show me the biggest dropping odds in football right now"
  • "What Premier League odds have dropped the most in the last 12 hours?"

Development

git clone https://github.com/odds-api-io/odds-api-mcp-server
cd odds-api-mcp-server
npm install
npm run build
npm test

License

MIT

Links

Reviews

No reviews yet

Be the first to review this server!