cloudbet/sports-mcp-server
🏃 Sports🟢 Verified Active
0 Views
0 Installs
🏎️ ☁️ – 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.
Quick Install
One-Click IDE Configuration
claude_desktop_config.json
{
"mcpServers": {
"cloudbet-sports-mcp-server": {
"command": "npx",
"args": [
"-y",
"cloudbet-sports-mcp-server"
]
}
}
}Or
Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
Cloudbet Sports MCP server
Single-file, minimal implementation of the Model Context Protocol (MCP) for sports data and betting tool exposure using the Cloudbet public API. This demo server follows the MCP Server specification and is designed for educational and demonstration purposes only. Please use responsibly and at your own risk.
- Run the Server:
go run .
- List Tools (Describe):
curl -X POST http://localhost:8080/ -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
}' | jq .
- Call a Tool:
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 .