Skip to main content
Glama
danilop

chess-support-mcp

by danilop

last_moves_detailed

Retrieve the last N chess moves with full details such as ply, side, UCI, and SAN notation. Specify n to control how many moves to return.

Instructions

Return the last N moves with details (default 1).

Each item: { ply:int, side:"white"|"black", uci:string, san:string }. Parameters:

  • n: integer >= 1. If n <= 0, returns an empty list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

With no annotations, the description carries the burden. It discloses the default value, the input constraint (n>=1), the edge case of empty list for n<=0, and the exact structure of each returned item. This is good transparency beyond the basic function.

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 compact, front-loads the main purpose, and uses a clear list for parameters and output format. Every sentence adds value.

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

Completeness4/5

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

For a simple read-only tool with one parameter and an output schema, the description covers the essential behavior, edge cases, and output format. It could mention ordering but that's implied by 'last N'. Overall near-complete.

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

Parameters5/5

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

The input schema only defines n with a type and default. The description adds the constraint n>=1, the behavior for n<=0, and the return item structure, significantly enriching the parameter meaning despite 0% schema coverage.

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 tool returns the last N moves with details, specifying the default. It distinguishes itself from sibling tools like 'last_moves' by adding 'with details' and from 'list_moves_detailed' by limiting to last N.

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

Usage Guidelines2/5

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

The description does not provide any guidance on when to use this tool versus alternatives such as 'last_moves' or 'list_moves_detailed'. No explicit context or exclusions are given.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/danilop/chess-support-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server