cricket-mcp-server
The Cricket MCP Server provides comprehensive cricket data and tools for real-time cricket statistics, news, and match information, primarily sourced from Cricbuzz and Google Search.
Player Statistics: Retrieve detailed cricket player stats, including batting and bowling records, with optional filtering by match format (Test, ODI, T20)
Live Matches: Fetch currently ongoing cricket matches with real-time updates
Match Schedule: Access upcoming cricket match schedules
Cricket News: Get the latest cricket news and updates
ICC Rankings: Retrieve official ICC rankings for batting, bowling, all-rounders, and teams across Test, ODI, and T20 formats
Match Scorecards: Get detailed match analysis with batting and bowling statistics
Live Commentary: Receive recent ball-by-ball updates for specific matches
Web Search: Perform general internet searches for cricket-related topics with options for limiting results and site filters, including specific searches for live commentary and match updates
Used for player profile discovery through Google Search, enabling the MCP server to find and retrieve cricket player information when specific player URLs are not directly known.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cricket-mcp-serverwhat are the current ICC batting rankings?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cricket MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cricket data from Cricbuzz. This server offers real-time cricket statistics, player information, match schedules, and news updates.
Features
Player Statistics: Get detailed cricket player stats including batting and bowling records across all formats (Test, ODI, T20)
Live Matches: Fetch currently ongoing cricket matches
Match Schedule: Get upcoming cricket match schedules
Cricket News: Latest cricket news and updates
ICC Rankings: Official ICC rankings for batting, bowling, all-rounders, and teams across Test, ODI, and T20 formats
Match Scorecards: Detailed match analysis with batting and bowling statistics
Live Commentary: Recent ball-by-ball updates for a given match URL
Web Search: Internet search with titles/snippets for cricket topics
Related MCP server: Soccer MCP Server
Installation
Clone or download this repository
Install the required dependencies:
pip install -r requirements.txtDemo: Gradio Web UI
You can interact with the Cricket MCP Server using a conversational web interface powered by Gradio and Gemini.
1. Set your Gemini API key
You need a Google Gemini API key to use the conversational agent. Set it as an environment variable:
export GOOGLE_API_KEY="your-gemini-api-key"2. Run the Gradio demo
python3 cricket_gradio.pyThis will launch a web UI in your browser where you can chat with the cricket assistant, ask for stats, live matches, news, and more.
Tip: The chat UI supports conversation memory and rich responses.

Usage
Running as an MCP Server
The server can be integrated with MCP clients. Here's how to configure it:
{
"cricket": {
"command": "python3",
"args": ["cricket_server.py"],
"transport": "stdio",
}
}For a more flexible setup, you can use environment variables to define the python executable and server script path.
Running Standalone
For testing purposes, you can run the server directly:
python3 cricket_server.pyAvailable Tools
1. get_player_stats
Get comprehensive cricket player statistics.
Parameters:
player_name(str): Name of the cricket playermatch_format(str, optional): Specific format ("Test", "ODI", "T20"). If not provided, returns all formats.
Returns:
Player basic info (name, country, role, image)
ICC rankings for batting and bowling
Detailed batting statistics
Detailed bowling statistics
Example:
# Get all stats for a player
stats = get_player_stats("Virat Kohli")
# Get only T20 stats
t20_stats = get_player_stats("Virat Kohli", "T20")2. get_live_matches
Get currently live cricket matches.
Returns: List of live match information including teams and current status.
3. get_cricket_schedule
Get upcoming cricket match schedule.
Returns: List of upcoming international cricket matches with dates and details.
4. get_cricket_news
Get the latest cricket news.
Returns: List of cricket news articles with headlines, descriptions, timestamps, and categories.
5. get_icc_rankings
Get official ICC cricket rankings for various categories.
Parameters:
category(str): The ranking category. Must be one of: "batting", "bowling", "all-rounder", or "teams".
Returns: Dictionary with rankings for Test, ODI, and T20 formats. Each format contains a list of players or teams with their position, name, country, and rating.
Example:
# Get batting rankings
batting_rankings = get_icc_rankings("batting")
# Get bowling rankings
bowling_rankings = get_icc_rankings("bowling")
# Get team rankings
team_rankings = get_icc_rankings("teams")6. get_match_details
Get detailed scorecard for a specific cricket match.
Parameters:
match_url(str): The URL of the match on Cricbuzz (can be obtained from get_live_matches).
Returns: Dictionary containing match details including match title, result, and detailed scorecard for each innings with batting and bowling statistics.
7. get_live_commentary
Get recent live commentary for a specific cricket match.
Parameters:
match_url(str): Cricbuzz match page URL (general match or direct commentary tab)limit(int, optional): Max number of recent items to return (default 20)
Returns:
Dictionary containing title, commentary_url, and events (list of commentary lines).
Example:
commentary = get_live_commentary("https://www.cricbuzz.com/live-cricket-scorecard/12345")8. web_search
Search the web and return results with titles and snippets.
Parameters:
query(str): Search querynum_results(int, optional): Number of results (default 5)site_filter(str, optional): Restrict to a domain likecricbuzz.com
Returns:
List of results: { "title": str, "url": str, "snippet": str }.
9. search_live_commentary
Search for live commentary and updates for cricket matches on the web.
Parameters:
match_description(str, optional): Full match description (e.g., "Zimbabwe vs New Zealand 2nd Test")team1(str, optional): First team nameteam2(str, optional): Second team name
Returns: List of web search results for live commentary and match updates from cricket news sites.
Example:
# Search by match description
results = search_live_commentary(match_description="Zimbabwe vs New Zealand 2nd Test")
# Search by team names
results = search_live_commentary(team1="Zimbabwe", team2="New Zealand")Data Source
This server scrapes data from Cricbuzz.com and uses Google Search for player profile discovery. Please ensure you comply with the website's terms of service and use responsibly.
Dependencies
fastmcp: MCP server frameworkrequests: HTTP library for web scrapingbeautifulsoup4: HTML parsing librarylxml: XML/HTML parsergooglesearch-python: Google search API wrapper
Configuration
The server runs on stdio transport by default. No additional configuration is required for basic usage.
Error Handling
The server includes comprehensive error handling for:
Network connectivity issues
Invalid player names
Missing data on Cricbuzz
Search failures
MCP Directory Badge
Add this badge to your README to show your server is listed and safe:
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Feel free to submit issues and enhancement requests!
Disclaimer
This tool scrapes data from public websites. The authors are not responsible for any misuse or violation of website terms of service. Use responsibly and ensure compliance with applicable terms and conditions.
Available Tools
9 toolsget_cricket_newsB
Get the latest cricket news from Cricbuzz.
Returns: list: A list of dictionaries, each containing news details including headline, description, timestamp, category, and a direct URL to the article.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool returns a list of news details, which is helpful, but lacks critical information such as whether it's a read-only operation, potential rate limits, authentication needs, or data freshness (e.g., how 'latest' is defined). This leaves significant gaps in understanding the tool's behavior beyond basic output.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by a clear 'Returns:' section detailing the output structure. Every sentence adds value: the first explains what the tool does, and the second specifies the return format. There is no wasted text, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no annotations, no output schema), the description is minimally complete. It explains the purpose and return format, which is adequate for a simple read operation. However, it lacks context on behavioral aspects like data sources or limitations, which could be important for an agent to use it effectively, especially without annotations to fill those gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately doesn't discuss parameters, focusing instead on the return value. This meets the baseline for tools with no parameters, as it doesn't add unnecessary information beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'latest cricket news from Cricbuzz', making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_cricket_schedule' or 'web_search', which could also provide cricket-related information but through different mechanisms or sources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_cricket_schedule' for schedules or 'web_search' for broader searches, leaving the agent without context for tool selection. The only implied usage is for retrieving cricket news, but no exclusions or comparisons are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_cricket_scheduleB
Get upcoming cricket match schedule from Cricbuzz.
Returns: list: A list of dictionaries, each representing a match with series name, match description, and a link to the match if available.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool fetches data from Cricbuzz and returns a list of match dictionaries, which covers basic functionality. However, it lacks details on rate limits, error handling, authentication needs, or data freshness, leaving gaps in behavioral understanding for a tool with external dependencies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by a clear returns section. Every sentence adds value: the first defines the action, and the second specifies the output format. There is no wasted text, making it highly efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally adequate. It explains what the tool does and the return format, but lacks context on data sources, limitations, or error cases. For a tool fetching external data, more completeness (e.g., noting it's read-only, or potential delays) would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and schema description coverage is 100% (though empty). The description doesn't need to add parameter semantics, so it meets the baseline of 4 for zero-parameter tools. It appropriately focuses on output behavior instead.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get upcoming cricket match schedule from Cricbuzz.' It specifies the verb ('Get'), resource ('upcoming cricket match schedule'), and source ('Cricbuzz'). However, it doesn't explicitly differentiate from sibling tools like 'get_live_matches' or 'get_match_details' beyond the 'upcoming' qualifier, which is why it doesn't reach a score of 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_live_matches' (for current matches) or 'get_match_details' (for specific match info), nor does it specify any prerequisites or exclusions. The agent must infer usage from the 'upcoming' keyword alone, which is insufficient for clear differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_icc_rankingsA
Fetches official ICC cricket rankings for various categories. Use this tool to answer questions about top players and teams in Test, ODI, and T20 formats.
For example, you can answer questions like:
"Who are the top 10 ODI batsmen?"
"Show me the test bowling rankings."
"What are the T20 team rankings?"
"icc ranking odi batsman"
Args: category (str): The ranking category. Must be one of: "batting", "bowling", "all-rounder", or "teams".
Returns: dict: A dictionary with rankings for Test, ODI, and T20 formats. Each format contains a list of players or teams with their position, name, country, and rating.
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It mentions the tool fetches 'official' rankings, implying authoritative data, but lacks details on rate limits, authentication needs, or potential data freshness issues. The description doesn't contradict any annotations (none exist), but could provide more behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with a clear purpose statement, usage guidance, concrete examples, and parameter/return documentation. Every sentence adds value without redundancy, and it's appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single parameter and no output schema, the description provides complete usage context including parameter details and return format. It could slightly improve by mentioning if the tool returns all formats simultaneously or requires separate calls, but overall it's quite comprehensive for this tool's scope.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, but the description fully compensates by clearly explaining the single parameter 'category' with its valid values ('batting', 'bowling', 'all-rounder', or 'teams') and purpose. This adds significant meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Fetches official ICC cricket rankings') and resource ('for various categories'), distinguishing it from sibling tools like get_cricket_news or get_player_stats by focusing exclusively on rankings rather than news, schedules, or statistics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use this tool ('to answer questions about top players and teams in Test, ODI, and T20 formats') and provides concrete examples of questions it can answer, clearly differentiating its purpose from alternatives like get_player_stats or web_search.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_live_commentaryA
Get recent live commentary events for a Cricbuzz match.
Args: match_url (str): Cricbuzz match URL. Can be a general match page; the commentary tab will be resolved automatically. limit (int): Maximum number of recent commentary items to return.
Returns: dict: {"title": str, "commentary_url": str, "events": [{"text": str}]}
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| match_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the tool returns recent commentary events and handles URL resolution automatically, but lacks details on permissions, rate limits, error handling, or whether it's read-only. For a tool with no annotations, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by structured Args and Returns sections. Every sentence earns its place by providing essential information without redundancy, making it highly efficient and well-organized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, 0% schema coverage, and no output schema, the description does a decent job explaining parameters and return structure. However, it lacks details on behavioral aspects like error cases or operational constraints, which are important for a tool interacting with external data. It's adequate but has clear gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics: match_url is explained as a Cricbuzz URL where the commentary tab is resolved automatically, and limit specifies the maximum number of recent items. This clarifies beyond the schema's basic types, though it doesn't cover all potential nuances like URL format constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get recent live commentary events') and resource ('for a Cricbuzz match'), distinguishing it from siblings like get_match_details or get_live_matches. It precisely identifies what the tool retrieves without being vague or tautological.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool—for live commentary events on Cricbuzz matches. It implicitly distinguishes from siblings like get_cricket_news or get_player_stats by focusing on commentary. However, it does not explicitly state when not to use it or name alternatives like search_live_commentary for more specific queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_live_matchesB
Get live cricket matches from Cricbuzz.
Returns: list: A list of dictionaries, each containing the match description and a URL. Example: [{"match": "IND vs AUS...", "url": "https://..."}]
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the return format (list of dictionaries with match description and URL) and provides an example, which is helpful. However, it doesn't mention important behavioral aspects like whether this requires authentication, rate limits, or how frequently the data updates.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with a clear purpose statement followed by return format details and an example. Every sentence adds value, though the example could be slightly more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless tool with no annotations and no output schema, the description provides adequate information about what the tool returns. However, it lacks context about data freshness, potential limitations, or how it differs from sibling tools, leaving some gaps in understanding when and how to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Since there are 0 parameters (schema coverage is 100%), the baseline score is 4. The description appropriately doesn't discuss parameters, focusing instead on the return value, which is correct for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get live cricket matches') and source ('from Cricbuzz'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'get_match_details' or 'get_cricket_schedule', which might also involve match information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_match_details' for specific matches or 'get_cricket_schedule' for upcoming matches. It simply states what the tool does without context about appropriate use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_match_detailsA
Get detailed scorecard for a specific cricket match from a Cricbuzz URL.
Args: match_url (str): The URL of the match on Cricbuzz (can be obtained from get_live_matches).
Returns: dict: A dictionary containing match details including: - Match title and result. - A scorecard for each innings with batting and bowling stats.
| Name | Required | Description | Default |
|---|---|---|---|
| match_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes what the tool returns (match details and scorecards) which is helpful, but doesn't mention potential limitations like rate limits, authentication needs, error conditions, or what happens with invalid URLs. It provides basic behavioral context but lacks operational details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly structured and front-loaded: the first sentence states the core purpose, followed by clear Args and Returns sections. Every sentence earns its place by providing essential information without redundancy. The formatting with clear sections enhances readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (single parameter, no output schema, no annotations), the description is quite complete. It explains the purpose, parameter, and return format. The main gap is the lack of output schema which would help structure expectations, but the Returns section provides good semantic information about what to expect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and only 1 parameter, the description fully compensates by clearly explaining the match_url parameter: what it is ('URL of the match on Cricbuzz'), its format (str), and where to obtain it ('can be obtained from get_live_matches'). This adds significant value beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get detailed scorecard'), resource ('for a specific cricket match'), and source ('from a Cricbuzz URL'). It distinguishes itself from siblings like get_live_matches (which lists matches) and get_live_commentary (which provides commentary rather than scorecard details).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use this tool: when you have a match URL from get_live_matches and need detailed scorecard information. It doesn't explicitly state when NOT to use it or name alternatives, but the context is sufficient for most scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_player_statsA
Get comprehensive cricket player statistics including batting and bowling data from Cricbuzz.
Args: player_name (str): The name of the cricket player. match_format (str, optional): The match format to get stats for. Can be "Test", "ODI", or "T20". If not provided, all stats are returned.
Returns: dict: A dictionary containing complete player statistics including: - Basic info (name, country, role, image) - ICC rankings for batting and bowling - Detailed batting stats (matches, runs, average, strike rate, centuries, fifties) - Detailed bowling stats (balls, runs, wickets, best figures, economy, five-wicket hauls) If match_format is specified, returns stats for that format only.
| Name | Required | Description | Default |
|---|---|---|---|
| match_format | No | ||
| player_name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses key behavioral traits: it fetches data from Cricbuzz, returns comprehensive stats in a dictionary format, and explains how the optional match_format parameter affects output (returns all stats if not provided, format-specific if specified). It does not mention rate limits, authentication needs, or error handling, but covers core functionality adequately.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear purpose statement, Args section, and Returns section. It is appropriately sized and front-loaded, with every sentence adding value. It could be slightly more concise by integrating the optional parameter effect into the Args section, but overall it is efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, 0% schema coverage, and no output schema, the description provides good completeness. It covers purpose, parameters, return format, and data source. It lacks details on error cases, rate limits, or authentication, but for a read-only data-fetching tool, it is sufficiently complete to guide an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds significant meaning beyond the schema: it explains that player_name is required and match_format is optional, specifies valid values for match_format ('Test', 'ODI', 'T20'), and describes the effect of match_format on output. This fully documents both parameters with clear semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get comprehensive cricket player statistics including batting and bowling data from Cricbuzz.' It specifies the verb ('Get'), resource ('cricket player statistics'), and scope ('comprehensive...including batting and bowling data'), distinguishing it from sibling tools like get_icc_rankings or get_match_details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through the 'Args' and 'Returns' sections, suggesting when to use it (for player stats) and how parameters affect results (match_format optional). However, it lacks explicit guidance on when to use this tool versus alternatives like get_icc_rankings or get_match_details, and does not mention any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_live_commentaryC
Search for live commentary and updates for cricket matches on the web.
Args: match_description (str, optional): Full match description (e.g., "Zimbabwe vs New Zealand 2nd Test") team1 (str, optional): First team name team2 (str, optional): Second team name
Returns: list: Web search results for live commentary and match updates
| Name | Required | Description | Default |
|---|---|---|---|
| match_description | No | ||
| team1 | No | ||
| team2 | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool performs a web search and returns results, but it doesn't cover critical aspects like whether it's read-only (implied by 'search' but not explicit), rate limits, authentication needs, or what happens with partial/no inputs. For a search tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and appropriately sized, with a clear purpose statement followed by separate 'Args' and 'Returns' sections. Every sentence adds value, and there's no redundant information. It could be slightly more concise by integrating the sections more fluidly, but overall it's efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with 3 parameters, 0% schema description coverage, no annotations, and no output schema, the description is incomplete. It covers the basic purpose and parameters but lacks behavioral details, usage guidelines, and output specifics (e.g., result format, error handling). For a tool that interacts with web data, this leaves too many unknowns for reliable agent invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description includes an 'Args' section that lists three optional parameters with brief examples (e.g., 'Zimbabwe vs New Zealand 2nd Test'), adding meaning beyond the input schema, which has 0% description coverage. However, it doesn't fully compensate for the schema gap—it lacks details on parameter interactions, format constraints, or how searches work with multiple/partial inputs. With 3 parameters at 0% schema coverage, the description provides basic but incomplete semantic context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for live commentary and updates for cricket matches on the web.' It specifies the verb ('search'), resource ('live commentary and updates'), and domain ('cricket matches on the web'), making it easy to understand. However, it doesn't explicitly differentiate from sibling tools like 'get_live_commentary' or 'web_search', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_live_commentary' (which might fetch commentary directly without web search) or 'web_search' (a general search tool), nor does it specify prerequisites or exclusions. Usage is implied by the purpose but lacks explicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_searchA
General web search for cricket-related queries. Returns links with titles and snippets.
Args: query (str): Search query num_results (int): Number of results to return (max ~10 typical) site_filter (str, optional): If provided, prefixes the query with e.g. "site:cricbuzz.com"
Returns: list[dict]: [{"title": str, "url": str, "snippet": str}]
| Name | Required | Description | Default |
|---|---|---|---|
| num_results | No | ||
| query | Yes | ||
| site_filter | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that it returns 'links with titles and snippets' and mentions 'max ~10 typical' for results, which adds useful context about output format and limitations. However, it doesn't cover important behavioral aspects like rate limits, authentication needs, or error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (purpose, args, returns), front-loaded with the main purpose, and every sentence adds value. No wasted words while maintaining completeness for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 3 parameters with 0% schema coverage and no output schema, the description does a good job explaining parameters and return format. It could be more complete by addressing when to use versus siblings and more behavioral details, but it covers the essential aspects adequately for this search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It provides clear semantic explanations for all 3 parameters: 'query' as search query, 'num_results' with typical max, and 'site_filter' with syntax example. This adds substantial value beyond the bare schema, though it could elaborate more on parameter interactions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'General web search for cricket-related queries' with specific verb ('search') and resource ('web'), and mentions it returns 'links with titles and snippets'. However, it doesn't explicitly differentiate from sibling tools like 'search_live_commentary' or 'get_cricket_news', which might also involve searching cricket content.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_live_commentary' or 'get_cricket_news'. It mentions it's for 'cricket-related queries' but doesn't specify scenarios where web search is preferred over the more specialized sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
9 tool updates
v1.0.0- First observed
get_cricket_news - First observed
get_cricket_schedule - First observed
get_icc_rankings - First observed
get_live_commentary - First observed
get_live_matches - First observed
get_match_details - First observed
get_player_stats - First observed
search_live_commentary - First observed
web_search
TDQS
Scored across 9 tools
Most tools have distinct purposes (news, schedule, rankings, live matches, match details, player stats), but there is some overlap between get_live_commentary and search_live_commentary which could cause confusion. The web_search tool also overlaps with other tools but serves as a general fallback.
All tools follow a consistent snake_case naming pattern with a clear verb_noun structure (e.g., get_cricket_news, get_icc_rankings). The naming is predictable and easy to understand across all nine tools.
Nine tools is well-scoped for a cricket information server, covering key areas like news, schedules, rankings, live matches, details, player stats, and search. Each tool serves a specific function without being excessive or insufficient for the domain.
The tool set provides comprehensive coverage for cricket data retrieval, including news, schedules, rankings, live updates, match details, and player stats. A minor gap is the lack of historical data tools (e.g., past match archives or historical rankings), but core workflows are well-supported.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Cricket MCP — wraps CricAPI (api.cricapi.com) for live cricket data.
- mcpOAuthcom.zomato
An MCP server that exposes functionalities to use Zomato's services.
One MCP server for 180+ live web-data APIs returning clean JSON from sites that block scrapers.
The official MCP Server for the Mux API
Related MCP Servers
- AlicenseBqualityAmaintenanceA Model Context Protocol server that provides access to Fantasy Premier League data, allowing users to compare players, find team information, view gameweek data, and get FPL-related advice through Claude for Desktop and other MCP-compatible clients.2379MIT
- FlicenseNot gradedqualityDmaintenanceProvides programmatic access to comprehensive football statistics and live match data via API-Football, enabling applications to retrieve league standings, team fixtures, player statistics, and real-time match events.6-
- FlicenseNot gradedqualityDmaintenanceAn MCP Server that enables interaction with MLB scores and statistics via the SportsData.io MLB V3 Scores API, allowing users to access baseball data through natural language queries.-
- AlicenseBqualityAmaintenanceSearch and retrieve news articles and trending keywords from Google News and Google Trends. Summarize articles and extract keywords using optional NLP and LLM Sampling to get concise insights.589MIT