install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-sports" ~/.claude/skills/openclaw-skills-pipeworx-sports && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-sports" ~/.openclaw/skills/openclaw-skills-pipeworx-sports && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-sports/SKILL.mdsource content
Sports
Live scores, standings, team info, and player data across football, basketball, baseball, hockey, and more via TheSportsDB.
Tools at a glance
-- Find teams by name. Returns sport, league, country, stadium, description, badge image.search_teams
-- Find players by name. Returns team, nationality, position, bio, thumbnail.search_players
-- Current season standings for any league (wins, draws, losses, goals, points).get_league_table
-- Last 15 results for a team with scores.get_last_events
-- Next 15 upcoming fixtures for a team.get_next_events
Example: Premier League standings
curl -X POST https://gateway.pipeworx.io/sports/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_league_table","arguments":{"league_id":"4328","season":"2024-2025"}}}'
Useful league IDs
| League | ID |
|---|---|
| English Premier League | 4328 |
| La Liga | 4335 |
| Serie A | 4332 |
| NBA | 4387 |
| NFL | 4391 |
| MLB | 4424 |
Useful team IDs
- Arsenal: 133604
- Manchester United: 133612
- Real Madrid: 133738
- LA Lakers: 134867
{ "mcpServers": { "sports": { "url": "https://gateway.pipeworx.io/sports/mcp" } } }