Skip to main content
Glama

evaluate_position

Evaluate a chess position with Stockfish: best move, centipawn/mate score, principal variation, and optional multipv. No mocks — a real single-threaded Stockfish 10 (asm.js) runs in-isolate per call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fenYes
depthNo
multipvNo

TDQS

B3.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that the tool uses real Stockfish 10 (asm.js), is single-threaded, and runs in-isolate per call. It also mentions no mocks. However, it does not cover potential errors, rate limits, or authorization needs.

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?

Two efficient sentences. The first sentence front-loads the core purpose and outputs. The second adds crucial behavioral context. Every word earns its place.

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

Completeness3/5

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

While the description mentions return values (best move, score, variation), it lacks details on output structure. With no output schema, this is a gap. Parameter explanations are minimal. The tool has 3 parameters and 1 required, but only multipv is mentioned. Overall, it is adequate but not comprehensive.

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

Parameters2/5

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

Schema coverage is 0%, so the description must explain parameter meanings. It only mentions 'optional multipv' but does not explain 'fen' or 'depth'. The outputs described (best move, score) are not parameter-related. This leaves significant gaps in understanding how to use the parameters.

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

Purpose4/5

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

The description clearly states the tool evaluates a chess position with Stockfish and lists outputs (best move, centipawn/mate score, principal variation, multipv). However, it does not explicitly differentiate from the sibling tool 'best_line', leaving ambiguity about when to choose one over the other.

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?

No guidance is provided on when to use this tool versus the sibling 'best_line' or alternatives. It does not mention prerequisites, limitations, or when not to use the tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: evaluate_position provides a static evaluation of a chess position, while best_line interactively plays out the principal variation with per-ply evaluations. There is no functional overlap.

Naming Consistency4/5

Both names use snake_case and are descriptive, but evaluate_position follows a verb_noun pattern while best_line is an adjective_noun construction, showing a slight inconsistency.

Tool Count3/5

With only 2 tools, the server is on the thin side for a chess evaluation service, though the tools are well-focused. Additional tools for other aspects of chess analysis would strengthen the set.

Completeness4/5

The tool set covers the core needs of chess evaluation (static analysis and line exploration) adequately for the server's stated purpose, leaving minor gaps such as batch analysis or configuration options.

Resources