# cloudbet/sports-mcp-server [Health: Active]

**Category:** 🏃 Sports  
**Repository:** https://github.com/cloudbet/sports-mcp-server  
**GitHub Stars:** 14  
**Views:** 1  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/cloudbet-sports-mcp-server

## Description
Access structured sports data via the Cloudbet API. Query upcoming events, live odds, stake limits, and market info across soccer, basketball, tennis, esports, and more.

## Claude Desktop Quick Installation
Heuristic fallback — verify the package name and runner against the repository README before running it. Uses `npx` (confidence: low):

```json
"mcpServers": {
  "sports-mcp-server": {
    "command": "npx",
    "args": ["-y","cloudbet-sports-mcp-server"]
  }
}
```

## Documentation & README

# Cloudbet Sports MCP server

Single-file, minimal implementation of the [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) for sports data and betting tool exposure using the Cloudbet public API. This demo server follows the [MCP Server specification](https://modelcontextprotocol.io/specification/2025-03-26/server) and is designed for educational and demonstration purposes only. Please use responsibly and at your own risk.

1. **Run the Server:**

```sh
go run .
```

2. **List Tools (Describe):**

```sh
curl -X POST http://localhost:8080/ -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list",
  "params": {}
}' | jq .
```

3. **Call a Tool:**

```sh
curl -X POST http://localhost:8080/ -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "findEventsAndMarketsByCompetition",
    "arguments": {
      "competitionName": "Premier League"
    }
  }
}' | jq .
```

