这是一个单文件、极简实现的Model Context Protocol (MCP),用于通过Cloudbet公共API暴露体育数据和投注工具。此演示服务器遵循MCP服务器规范,仅用于教育和演示目的。请负责任地使用,并自行承担风险。
go run .
curl -X POST http://localhost:8080/ -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
}' | jq .
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 .