Loading languages...
SP

sports-mcp-server

@cloudbet3

Cloudbet 공개 API를 사용하여 스포츠 데이터 및 베팅 도구를 노출하기 위한 [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP)의 단일 파일 최소 구현체입니다. 이 데모 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