Skip to main content
Glama
skeeved

wordle-mcp

by skeeved

Server Quality Checklist

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

  • Disambiguation4/5

    suggest_words and starting_words both recommend words, but suggest_words is for any point in the game while starting_words specifically targets openings, and validate_word is clearly distinct. The slight overlap when no guesses are given is clarified by descriptions.

    Naming Consistency4/5

    Tool names mostly follow a verb_noun pattern (suggest_words, validate_word), but starting_words deviates by using an adjective/participle. Overall the pattern is readable and predictable.

    Tool Count5/5

    Three tools is a well-scoped set for a Wordle helper server, covering the essential actions without redundancy or bloat.

    Completeness5/5

    The tool set covers the core needs: opening suggestions, ongoing guess feedback, and word validation. No obvious gaps for the stated purpose.

  • Average 3.9/5 across 3 of 3 tools scored. Lowest: 3.1/5.

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

    • No community issues in the last 6 months
    • 5 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under GPL 3.0.

  • 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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It adds relevant context by explaining that the guesses are 'rich in common, distinct letters,' giving insight into the output's nature. However, it does not disclose the return format (e.g., a list of strings), language constraints, or how max_results affects the behavior. It is partially transparent but lacks completeness.

    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, front-loaded sentence that efficiently conveys the tool's purpose. It contains no filler or redundant information, making it appropriately concise and well-structured.

    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?

    Given the tool's simplicity (one parameter, no output schema, no annotations), the description provides a basic understanding of its purpose and the nature of its suggestions. However, it does not specify the return format, the word source, or how it relates to sibling tools, leaving some gaps in context for an agent to invoke it correctly.

    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?

    The input schema provides only the parameter name 'max_results' with a default of 15 and no description. The tool description does not mention this parameter at all, so it adds no explicit meaning beyond the schema. There is an implied connection between 'strong opening guesses' and limiting results, but the description fails to clarify the exact role of max_results.

    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's function: suggesting strong opening guesses. It uses the specific verb 'suggest' and identifies the resource as guesses for starting words. It distinguishes itself from siblings by focusing on 'opening guesses' rather than general word suggestions or validation, though it could be more explicit about the word game context.

    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?

    There is no explicit guidance on when to use this tool versus the sibling tools suggest_words or validate_word. The description implies it is for opening guesses, but it does not clarify when to choose this over alternatives, nor does it provide any exclusions or prerequisites. The agent is left to infer usage context.

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

  • Behavior3/5

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

    No annotations are provided, so the description must disclose behavior. It indicates a read-only validation operation via 'Check', but doesn't detail edge cases, case sensitivity, or the exact return type. This is minimal but not misleading.

    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, front-loaded sentence that gets straight to the point. No unnecessary information.

    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?

    Given the simple tool (one parameter, no output schema), the description is sufficient for understanding the tool's purpose and parameter constraint. It could mention return format, but the verb 'Check' implies a boolean answer.

    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 schema only defines 'word' as a string with no description. The tool description adds key constraints: the word must be 5 letters and is a Wordle guess. This compensates for the 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 validates a word against Wordle's accepted guesses. It uses the specific verb 'Check' and names the resource, distinguishing it from sibling tools that suggest or start words.

    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 implies the tool is for verifying whether a specific word is a valid Wordle guess. It doesn't explicitly mention when not to use it or alternatives, but the context of validation versus suggestion is clear.

    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 burden and does a good job: it discloses the ranking heuristic, the opening-word fallback, and the subtle duplicate-letter handling. This is substantive behavioral context that goes beyond the name and schema.

    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 with the core purpose. Each sentence adds meaningful detail—usage, ranking, and an important edge case—without waste or redundancy.

    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?

    Given there is no output schema and no annotations, the description covers the essential context: what the tool does, how to pass inputs, ranking behavior, no-guess behavior, and duplicate handling. It doesn't mention what happens if no words match or the exact return format, but these are minor gaps for a suggestion tool.

    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% for top-level parameters, so the description compensates by explaining what 'guesses' should contain (all guesses plus tile colors) and how feedback is interpreted. It does not address 'max_results', but that parameter is relatively self-explanatory.

    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 primary function: returning five-letter words consistent with prior guesses. It distinguishes itself from siblings by focusing on guess-consistency, while the no-guess fallback to opening words is clearly described.

    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 gives explicit instructions on when to use the tool: pass every guess with the tile colors Wordle showed. It also clarifies behavior when no guesses exist, but it doesn't explicitly mention alternatives like 'starting_words' or 'validate_word' for comparison.

    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

wordlebot MCP server

Copy to your README.md:

Score Badge

wordlebot 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/skeeved/wordlebot'

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