Skip to main content
Glama

check_progress

Read-only

Check a user's current progress against the correct solution. Returns factual information only: whether the puzzle is complete, whether all filled cells are correct, which cells are incorrect (with the entered digit), and how many cells remain empty. Does not give hints or coaching — use explain_next_step for that. Use this when the user asks "am I done?" or "did I make any mistakes?" Every response includes a solve_url where the same puzzle can be continued in the interactive solver.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
puzzleYesOriginal 81-char sudoku clue string (0 or . for empty cells).
progressYesCurrent 81-char board state to check.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already mark readOnlyHint=true, and the description adds substantial behavior beyond that: it promises factual information only, disclaims hints/coaching, enumerates exactly what will be returned, and states every response includes a solve_url. This is rich behavioral context for an agent.

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?

Four sentences with no wasted text: the main purpose is front-loaded, followed by return behavior, the key exclusion/alternative, and a stable response-field guarantee. Every sentence contributes useful information for tool selection or invocation.

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?

There is no output schema, but the description compensates by enumerating the return facts (completeness, correct cells, incorrect cells with entered digit, empty count) and the guaranteed solve_url. It also gives concrete user utterances for when to call it, so an agent has all the information needed to invoke it 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 both parameters (puzzle and progress) are already documented as 81-character strings with empty-cell conventions. The description does not need to re-explain parameters, so it stays at the baseline 3 because the schema carries that burden.

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?

States a specific verb and object: "Check a user's current progress against the correct solution." It further enumerates the exact factual outputs (completeness, correctness, incorrect cells, empty count) and explicitly contrasts with the sibling explain_next_step by saying it does not give hints or coaching, so an agent can distinguish it without opening schemas.

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

Usage Guidelines5/5

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

Gives explicit trigger phrases: "Use this when the user asks 'am I done?' or 'did I make any mistakes?'" and names the alternative for hint requests: "Does not give hints or coaching — use explain_next_step for that." This covers both when to use and 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

A4.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: check_progress reports factual status, explain_next_step gives coaching hints, get_sudoku_puzzle fetches puzzles, and solve_sudoku produces full step-by-step solutions. Even the overlapping error-detection behavior between check_progress and explain_next_step is explicitly differentiated in the descriptions.

Naming Consistency5/5

All tool names follow a consistent imperative verb + object pattern in snake_case: check_progress, explain_next_step, get_sudoku_puzzle, solve_sudoku. This makes the toolset predictable and easy to navigate.

Tool Count5/5

Four tools is well-scoped for a sudoku assistant: puzzle generation, full solving, one-step hints, and progress checking. Each tool earns its place without redundancy or unnecessary expansion.

Completeness5/5

The toolset covers the full core workflow of a sudoku coaching server: get a puzzle, solve it, ask for the next step, and verify progress. Missing features like user accounts or saved games are outside the apparent purpose, and error handling is built into explain_next_step and check_progress.

Resources