Loading languages...
SP

sports-mcp-server

@cloudbet3

这是一个单文件、极简的 [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) 实现,用于通过 Cloudbet 公共 API 展示体育数据和博彩工具。此演示 mcp servers 遵循 [MCP Server 规范](https://modelcontextprotocol.io/specification/2025-03-26/server),仅供教育和演示使用。请负责任地使用,并自行承担风险。

sports
betting
data
api

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.

  1. Run the Server:
go run .
  1. 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 .
  1. 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 .

# mcpServer Config

No mcpServer Config instructions provided.

# stdio

go run .
Transport:
stdio
Language:
Go
Updated: 7/23/2025