Skip to main content
Glama
udarrr

Chess.com MCP Server

by udarrr

get_live_team_match_board

Retrieve a specific board from a live team match on Chess.com by providing match ID and board number.

Instructions

Get a board from a live team match on Chess.com

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardYes
match_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.0

TDQS

B3/5.0
Behavior2/5

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 only states what the tool does (get a board) without any information on authentication, error handling, rate limits, or the nature of the data returned. For a read operation, this is minimal but does not actively contradict anything.

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

Conciseness4/5

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

The description is a single, focused sentence with no redundant words. It is appropriately brief for a simple get operation, though it sacrifices necessary detail for brevity.

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

Completeness2/5

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

Given the simplicity of the tool (two required parameters, no output schema), the description should at least clarify what a 'board' refers to and what the expected response is. It does not, leaving the agent to rely on domain knowledge. The lack of output schema makes this gap more significant.

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

Parameters1/5

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

The schema has 0% description coverage for its two parameters (match_id and board), and the description does not mention them at all. The agent must infer their meaning from names alone, which may be ambiguous. The description fails to compensate for the lack of schema documentation.

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?

The description clearly states the action (Get) and the resource (a board from a live team match), and the word 'live' distinguishes it from the sibling get_team_match_board. It is specific and immediately understandable without needing to inspect the schema.

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

Usage Guidelines3/5

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

The description implies usage for live team matches, and the presence of get_team_match_board suggests a non-live alternative, but there is no explicit guidance on when to choose this tool over others. No exclusions or contextual cues are provided.

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