Skip to main content
Glama
cheungbrenden

croissant-mcp

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool targets a distinct resource or action: databases vs. repertoires vs. training state vs. game queries. Even the three position-related tools differ clearly: one searches games, one reports user results, one reports opponent moves.

    Naming Consistency4/5

    Most tools follow a verb_noun pattern (list_databases, read_repertoire, add_line_to_repertoire, get_training_status, search_games). Two tools break the pattern with possessive noun phrases (my_results_from_position, opponents_play), which is a minor inconsistency.

    Tool Count5/5

    Eight tools is well within the ideal 3–15 range for a focused chess training server. Each tool addresses a distinct part of the workflow without unnecessary bloat.

    Completeness4/5

    The set covers listing, reading, and adding repertoire lines, plus training status and position analysis—solid coverage for the core domain. Missing explicit update/delete operations for repertoire lines are workable gaps but not fatal for typical use.

  • Average 4.3/5 across 8 of 8 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 26 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

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

    No annotations are provided, so the description carries the transparency burden. It states a listing operation, which implicitly indicates non-destructive read-only behavior, but it does not disclose additional behavioral traits such as authentication requirements, pagination, or whether it returns all repertoires. The presence of an output schema covers return structure, but the description itself adds limited context beyond the stated action.

    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 a single, concise sentence that front-loads the action ('List') and the resource ('En Croissant repertoire files'). Every word contributes to the meaning, and there is no redundant or extraneous information.

    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?

    Given the tool's simplicity (0 params), the presence of an output schema, and a clear one-sentence description that states both the action and the output content, the description is complete for an AI agent to select and invoke the tool. It adequately differentiates from sibling tools by mentioning 'En Croissant repertoire' specifically, which distinguishes it from generic list operations.

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

    Parameters4/5

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

    With zero parameters in the input schema, the baseline is 4. The description does not need to explain parameters since there are none, and the schema already covers the absence of inputs. No additional parameter meaning is required.

    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 uses the specific verb 'List' and resource 'En Croissant repertoire files', and specifies what information is returned ('which colour each trains'). This clearly distinguishes it from siblings like list_databases and read_repertoire by narrowing the scope to repertoire files and their associated colours.

    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 when one needs an overview of all repertoire files and their colours, but it does not explicitly mention alternative tools or contexts where this tool should be preferred. No exclusions or contrasts with sibling tools are provided, so guidance is only implied rather than clearly stated.

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

  • Behavior4/5

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

    The description discloses meaningful behavioral details beyond the schema: position matching ignores move counters and non-capturable en-passant squares, so transpositions count, and sample sizes are small. With no annotations, this is valuable context. It does not discuss return format or side effects, but an output schema exists, reducing the need for that.

    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 three sentences: one core purpose sentence followed by two caveats. It is front-loaded with the main function and contains no filler or redundancy. Excellent structure.

    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 tool with one parameter and an output schema, the description is quite complete: it covers data scope (rated blitz games), position matching behavior, and sample-size caveats. It does not discuss error conditions or alternatives, but these are not essential here.

    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?

    The only parameter (fen) has no schema description, and the tool description does not explicitly define FEN or provide an example. It only refers to 'position' and 'transpositions', which indirectly implies the param's meaning. With 0% schema coverage, the description should compensate more directly, so the score is moderate.

    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 user's W/D/L record from a position across rated blitz games. It specifies a particular resource (the record) and scope (position, blitz games), distinguishing it from siblings like list_repertoires or search_games.

    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 clear context for when to use this tool (querying the user's results from a position) and includes important interpretive guidance about small sample sizes. However, it does not explicitly name alternative tools or state 'when not to use', so it falls short of the most explicit guidance.

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

  • Behavior4/5

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

    With no annotations, the description must carry the transparency burden. It discloses two significant behaviors: 'Defaults come from config so the pool matches the user's actual games' and 'Cached locally; a repeated query makes no network call.' It does not explicitly state read-only behavior, but that is clearly implied. It could mention auth or rate limits, but for this simple query tool, the transparency is solid.

    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 appropriately concise and front-loaded. The first sentence states the core purpose; the second explains the source variants. The second paragraph adds useful config/caching details without redundancy. No word is wasted.

    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 query tool with 2 parameters and an output schema, the description covers purpose, sources, defaults, and caching behavior. It does not explicitly compare to sibling tools or mention limitations/errors, but it is reasonably complete given the tool's simplicity and the presence of an output schema.

    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 0%, so the description must compensate. It fully explains the source parameter (lichess default vs masters) and the config-driven defaults. For fen, it only says 'from a position', which is minimal but somewhat informative. No FEN notation or examples are provided, so the description only partially compensates for the schema's lack of 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 tool's function: 'What gets played from a position' and immediately distinguishes between two sources (lichess vs masters). This is a specific verb+resource+scope that differentiates it from sibling tools like my_results_from_position, which presumably focuses on the user's own results.

    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 clear context on when to use the tool: to see what opponents play at the user's rating/speed or from masters. It explains the default source and config-based filtering, implying the intended use case. However, it does not explicitly name alternative tools or state when not to use this tool, which prevents a 5.

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

  • Behavior4/5

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

    With no annotations, the description takes on the burden of disclosing behavior. It adds a key behavioral trait: 'At every position, the FIRST variation listed is the move En Croissant drills; later variations are recorded alternatives.' This goes beyond the simple 'read' semantics and helps the agent understand the output ordering. It also lists what the tree contains (main line, orientation, size), providing valuable context.

    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 two sentences, front-loaded with the primary purpose. The second sentence adds important behavioral detail without unnecessary expansion. Every word earns its place—no fluff, repetition, or ambiguity. This is a model of conciseness.

    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?

    The tool has one parameter, an output schema, and no annotations. The description covers the purpose and a key behavioral detail. The output schema likely explains return structure, so the description doesn't need to. It's reasonably complete for a read-only, single-parameter tool, though it could mention prerequisites like existence of the repertoire, but that's a minor gap.

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

    Parameters4/5

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

    The input schema has only one parameter 'name' with no description. The tool description references 'one repertoire,' which implicitly clarifies that 'name' identifies the repertoire. Although it doesn't explicitly state this, for a single obvious parameter, the description compensates enough. The schema coverage is 0% by strict measure, but the parameter is simple and the context is sufficient.

    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's function with a specific verb and resource: 'Read one repertoire's tree: its main line, orientation, and size.' This distinguishes it from sibling tools like list_repertoires (which lists all repertoires) and add_line_to_repertoire (which modifies). The purpose is unambiguous.

    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 when you need the tree of a specific repertoire, but it does not explicitly contrast with alternatives or provide exclusion criteria. For instance, it doesn't say 'use this instead of list_repertoires when you need details of one repertoire.' The context is clear but lacks explicit when-to-use guidance, so it earns an average score.

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

  • Behavior5/5

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

    With no annotations, the description fully discloses side effects: it joins existing branches, never reorders variations (and explains why), schedules new positions automatically, leaves existing cards untouched, and backs up previous contents. It also warns about the app's silent overwrite risk, providing critical context.

    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 three dense paragraphs, each adding critical information: purpose, behavioral details, and prerequisites/backup. No wasted sentences; every sentence earns its place.

    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?

    Covers purpose, side effects, prerequisites, and data integrity guarantees. As a 2-parameter mutation tool with an output schema, it is sufficiently complete without needing to describe return values. The description details all important behavioral traits.

    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?

    The description clarifies that 'moves' are SAN moves from the starting position, adding meaning beyond the schema's bare 'array of strings'. However, 'name' is not explained (presumably the repertoire name), leaving that parameter ambiguous. With 0% schema coverage, description only partially compensates.

    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 first sentence clearly states the verb ('Merge') and resource ('a line of SAN moves from the starting position into a repertoire'). It also differentiates from sibling tools by specifying the join behavior, making it the only write-oriented tool among lists/reads.

    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?

    Usage context is implied rather than explicit. No alternative tools are mentioned or when-not-to-use guidance provided. The prerequisite ('En Croissant must be closed') is given, but the description does not directly say 'use this when you want to add a line' or contrast with other operations.

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

  • 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 fetches live from the Lichess API with a fallback to local export, and notes the default blitz mode. However, it does not mention auth requirements, read-only status, or potential rate limits. The live-fetch disclosure is meaningful.

    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 three sentences long, front-loaded with the core purpose, and every sentence provides necessary information: scope/default, filter semantics, and data source behavior. There is no filler or repetition.

    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?

    The description covers the tool's scope, default behavior, filter semantics, date format, and data source. Since an output schema exists, return values need not be described. The main gaps are the lack of detail on 'opponent' and 'eco', but overall the description is quite complete for a search tool with 6 optional parameters.

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

    Parameters4/5

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

    Schema description coverage is 0%, so the description must compensate. It explains the semantics of colour, result, and date format for since/until, which are the most ambiguous. It does not explain eco or opponent, but these are relatively self-explanatory. Overall, it adds significant value beyond the schema.

    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 searches the user's own rated Lichess games, with a specific verb ('Search') and resource ('user's own rated Lichess games'). It also mentions a default (blitz) which adds specificity and differentiates it from sibling tools that deal with databases and repertoires.

    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 clear context: it is for searching the user's own rated games, with an implicit filter scope from the user's perspective. It does not explicitly mention alternatives or when not to use this tool, but the context is strong enough to distinguish it from siblings.

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

  • Behavior5/5

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

    With no annotations, the description carries the full burden and does so thoroughly: it declares read-only behavior, states that training state is never modified, and reveals a concurrency nuance (possible stale data if a session hasn't flushed). It also enumerates the output categories, giving a clear behavioral picture.

    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 two short paragraphs: the first states the purpose in a single sentence, the second adds critical safety and staleness context. Every sentence earns its place, with no filler.

    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?

    Given the output schema is present, the description doesn't need to detail the return format. It adequately covers purpose, safety, concurrency, and output scope for a simple single-parameter read tool. No significant gaps.

    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 coverage is 0%, and the description does not explicitly map the 'name' parameter to the repertoire name. However, the phrasing 'for a repertoire' strongly implies that the parameter is the repertoire name, adding some meaning beyond the bare schema.

    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 uses a specific verb ('Read') and identifies the resource ('FSRS training state for a repertoire'), clearly distinguishing it from sibling tools like read_repertoire and list_repertoires. The scope is explicit and unambiguous.

    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 clear context that this is read-only and safe to use while En Croissant runs, with a caveat about unflushed sessions. It does not explicitly name alternatives or say 'use this instead of read_repertoire', but the unique focus on training state makes the intended usage obvious.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states 'Read-only, and safe to call while En Croissant is running,' which is valuable transparency. It also outlines the output fields, giving a good sense of what to expect.

    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 front-loaded, using three short sentences to cover purpose, output contents, and safety. Every sentence adds value with no redundancy or filler.

    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?

    For a zero-parameter list tool with an output schema, the description is complete. It identifies the resource, the type of information returned, and the safety profile, which is all an agent needs to select and invoke this tool correctly.

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

    Parameters4/5

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

    This tool has zero parameters, so there are no parameter semantics to explain. The schema confirms this with 100% coverage, and the description adds meaningful details about what the output reports, making a baseline 4 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?

    The description starts with a specific verb and resource: 'List the En Croissant game databases installed on this machine.' It clearly establishes the tool's scope and distinguishes it from sibling tools that deal with repertoires, training status, or game searches.

    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 useful context by stating the operation is read-only and safe to call while En Croissant is running. It does not explicitly mention alternatives or when not to use it, but with no sibling tool listing databases, the usage context is reasonably clear.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

croissant-mcp MCP server

Copy to your README.md:

Score Badge

croissant-mcp MCP server

Copy to your README.md:

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/cheungbrenden/croissant-mcp'

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