Skip to main content
Glama

cricket_get_scorecard

Read-onlyIdempotent

Retrieve full scorecard for a cricket match using its match ID, including innings, partnerships, and bowling figures.

Instructions

Return the full scorecard for a specific match.

Args: match_id: The match identifier (e.g. from cricket_get_live_matches).

Returns: data: full scorecard with innings, partnerships, bowling figures. meta.source: adapter that served the data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
match_idYesThe match identifier (e.g. from cricket_get_live_matches).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
errorNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish read-only, idempotent, non-destructive behavior, lowering the burden. The description adds useful context about the scope of 'full scorecard' and the meta.source adapter field, but does not go deeper into data freshness or error behavior. This is on par with the calibrated baseline for annotation-carrying tools.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured with clear Args and Returns sections. The core purpose is front-loaded in a single sentence, and every listed item adds useful information without filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool takes a single required parameter, has 100% schema coverage, an output schema, and strong safety annotations. The description supplies the only missing workflow detail—how to source the match_id—making it fully complete for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the tool description repeats the same match_id explanation (including the reference to cricket_get_live_matches). The description does not add any semantic detail beyond what the input schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with 'Return the full scorecard for a specific match', a specific verb and resource, and the Returns section details exactly what a scorecard contains (innings, partnerships, bowling figures). This clearly distinguishes it from siblings like cricket_get_live_matches, cricket_get_squad, and cricket_get_pitch_report.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear prerequisite by noting the match_id is obtained from cricket_get_live_matches, which establishes when this tool is appropriate. It does not explicitly name alternatives or exclusion cases, but the narrow scope of 'scorecard for a specific match' makes those unnecessary.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.