get_match_details
Retrieve comprehensive cricket match details, including title, result, and scorecard data for each innings, by providing a Cricbuzz URL via the cricket-mcp-server.
Instructions
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.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
match_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"match_url": {
"title": "Match Url",
"type": "string"
}
},
"required": [
"match_url"
],
"title": "get_match_detailsArguments",
"type": "object"
}