cricbuzz-cricket
The Cricbuzz Cricket MCP Server provides comprehensive tools for accessing live cricket scores, commentary, news, schedules, rankings, stats, and more.
The Cricbuzz Cricket MCP Server is designed to offer real-time cricket data and insights through a variety of tools, allowing you to stay updated with the latest happenings in the cricket world. It provides functionalities such as live cricket scores, match schedules, cricket news, player and team information, and cricket rankings and stats. This server is ideal for cricket enthusiasts, developers, or anyone looking to integrate cricket data into their applications. With its extensive coverage of live scores, news, player and team data, and statistical insights, it serves as an essential resource for anyone interested in the sport.
Features
- Live Cricket Scores: Access live scores for ongoing matches to stay updated in real-time.
- Match Schedules: Retrieve information on upcoming matches and series to plan your cricket calendar.
- Cricket News: Stay informed with the latest news and editorials from the world of cricket.
- Player and Team Information: Get detailed information about players and teams, including stats, career highlights, and more.
- Cricket Rankings and Stats: Access ICC rankings, player and team stats, and other records to analyze performance.
MCP Tools
- Matches: Fetch details of ongoing, upcoming, and recent matches.
- Series: Retrieve a list of current and past series, and access related news.
- Teams: Get a comprehensive list of cricket teams and their schedules.
- Players: Discover trending players and access detailed career information.
- Venues: Get detailed information about cricket venues and scheduled matches.
- News and Photos: List the latest cricket news articles and explore photo galleries.
- Stats: Access the latest ICC rankings and retrieve detailed cricket records.
Usage with Different Platforms
python
python
import requests
url = 'https://api.cricbuzz.com/matches'
response = requests.get(url)
print(response.json())
javascript
javascript
fetch('https://api.cricbuzz.com/matches')
.then(response => response.json())
.then(data => console.log(data));