Skip to main content
ClaudeWave
odds-api-io avatar
odds-api-io

odds-api-mcp-server

Ver en GitHub

Official MCP server for Odds-API.io: live sports betting odds from 265+ bookmakers in Claude, Cursor and other AI tools

MCP ServersRegistry oficial0 estrellas1 forksJavaScriptMITActualizado today
Install in Claude Code / Claude Desktop
Method: NPX · odds-api-mcp-server
Claude Code CLI
claude mcp add odds-api -- npx -y odds-api-mcp-server
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "odds-api": {
      "command": "npx",
      "args": ["-y", "odds-api-mcp-server"],
      "env": {
        "ODDS_API_KEY": "<odds_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
ODDS_API_KEY
Casos de uso

Resumen de MCP Servers

# Odds-API.io MCP Server

[![npm version](https://img.shields.io/npm/v/odds-api-mcp-server)](https://www.npmjs.com/package/odds-api-mcp-server) [![license: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

Model Context Protocol (MCP) server for [Odds-API.io](https://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](https://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](https://github.com/odds-api-io/odds-api-mcp-server/releases/latest) and open it. Claude Desktop will prompt you for your API key.

### Claude Code CLI

```bash
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):

```json
{
  "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):

```json
{
  "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`):

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

### Global Install (alternative)

```bash
npm install -g odds-api-mcp-server
```

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

## Configuration

| Variable | Required | Description |
|----------|----------|-------------|
| `ODDS_API_KEY` | Yes | Your API key from [odds-api.io](https://odds-api.io) |

## Available Tools

### Sports & Leagues

| Tool | Description |
|------|-------------|
| `get_sports` | List all available sports with slugs |
| `get_leagues` | Get leagues for a sport (with optional `all` flag for inactive leagues) |

### Bookmakers

| Tool | Description |
|------|-------------|
| `get_bookmakers` | List all supported bookmakers |
| `get_selected_bookmakers` | Get your currently selected bookmakers |
| `select_bookmakers` | Add bookmakers to your selection |
| `clear_selected_bookmakers` | Clear all selected bookmakers (once per 12h) |

### Events

| Tool | Description |
|------|-------------|
| `get_events` | Get events with filtering (league, status, date range, participant, bookmaker, pagination) |
| `get_event` | Get a single event by ID |
| `get_live_events` | Get currently live events |
| `search_events` | Search events by team name or text |

### Odds

| Tool | Description |
|------|-------------|
| `get_odds` | Get odds for an event from selected bookmakers |
| `get_multi_odds` | Get odds for up to 10 events in one call |
| `get_odds_movements` | Get historical line movements for a market |
| `get_updated_odds` | Get recently changed odds (polling) |

### Historical

| Tool | Description |
|------|-------------|
| `get_historical_events` | Get finished events for a sport/league/date range |
| `get_historical_odds` | Get closing odds and scores for finished events |

### Betting Analytics

| Tool | Description |
|------|-------------|
| `get_value_bets` | Get positive EV opportunities for a bookmaker |
| `get_arbitrage_bets` | Get arbitrage opportunities with optimal stakes |
| `get_dropping_odds` | Track sharp bookmaker line movements by sport, league, market, and time window |

### Participants

| Tool | Description |
|------|-------------|
| `get_participants` | Get teams/participants for a sport |
| `get_participant` | Get a single participant by ID |

### Reference

| Tool | Description |
|------|-------------|
| `get_documentation` | Fetch full API documentation |

## Resources

| Resource URI | Description |
|-------------|-------------|
| `odds-api://documentation` | Complete API documentation |
| `odds-api://openapi` | OpenAPI/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

```bash
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

- [Odds-API.io](https://odds-api.io) - Main website
- [Documentation](https://docs.odds-api.io) - API docs
- [API Reference](https://api.odds-api.io/v3/docs/index.html) - Swagger/OpenAPI
- [npm](https://www.npmjs.com/package/odds-api-mcp-server) - Package registry
betting-oddsclaudemcpmcp-servermodel-context-protocolodds-apisports-bettingsports-odds

Lo que la gente pregunta sobre odds-api-mcp-server

¿Qué es odds-api-io/odds-api-mcp-server?

+

odds-api-io/odds-api-mcp-server es mcp servers para el ecosistema de Claude AI. Official MCP server for Odds-API.io: live sports betting odds from 265+ bookmakers in Claude, Cursor and other AI tools Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala odds-api-mcp-server?

+

Puedes instalar odds-api-mcp-server clonando el repositorio (https://github.com/odds-api-io/odds-api-mcp-server) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar odds-api-io/odds-api-mcp-server?

+

odds-api-io/odds-api-mcp-server aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene odds-api-io/odds-api-mcp-server?

+

odds-api-io/odds-api-mcp-server es mantenido por odds-api-io. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a odds-api-mcp-server?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega odds-api-mcp-server en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: odds-api-io/odds-api-mcp-server
[![Featured on ClaudeWave](https://claudewave.com/api/badge/odds-api-io-odds-api-mcp-server)](https://claudewave.com/repo/odds-api-io-odds-api-mcp-server)
<a href="https://claudewave.com/repo/odds-api-io-odds-api-mcp-server"><img src="https://claudewave.com/api/badge/odds-api-io-odds-api-mcp-server" alt="Featured on ClaudeWave: odds-api-io/odds-api-mcp-server" width="320" height="64" /></a>

Más MCP Servers

Alternativas a odds-api-mcp-server