ice-hockey-data
3.9
Ice Hockey Data MCP Server provides comprehensive and detailed ice hockey scores from games around the world, including live updates and in-depth details.
Ice Hockey Data MCP Server offers schedules and standings for pre-season, regular season, and playoffs. With coverage from national hockey leagues in Europe and Asia, combined with the highly popular NHL, this server ensures a wide and global reach for ice hockey data. The server offers an extensive range of data for the world's top ice hockey leagues, including fixtures, standings, match lists, and more. With in-depth coverage of the biggest ice hockey tournaments worldwide, it provides the opportunity to present the best sports data to users located anywhere.
Features
- {'name': 'Pre-Match Data', 'description': 'Access tournament standings, daily match lists, tournament teams, tournament info, tournament fixtures, and tournament lists.'}
- {'name': 'Live Data', 'description': 'Access daily match lists that include scheduled, live, and finished matches.'}
- {'name': 'Post-Match Data', 'description': 'Access daily match lists that include finished matches.'}
- {'name': 'H2H Data', 'description': 'Provides a list of results from the last 20 matches between two teams, with optional home and away filters.'}
Usage with Different Platforms
python
python
import requests
url = 'https://icehockeydata.example.com/api/matches'
response = requests.get(url)
data = response.json()
print(data)
javascript
javascript
fetch('https://icehockeydata.example.com/api/matches')
.then(response => response.json())
.then(data => console.log(data));