Skip to main content
Glama

Server Quality Checklist

33%
Profile completionA complete profile improves this server's visibility in search results.
  • A "release" on Glama is not the same as a GitHub release. To create a Glama release:

    1. if you haven't already.
    2. Go to the Dockerfile admin page, configure the build spec, and click Build.
    3. Once the build test succeeds, click Make Release beside it, enter a version, and publish. Build & Release on the Dockerfile page does both at once instead, choosing the version for you.

    This process allows Glama to run security checks on your server and enables users to deploy it.

    Read the detailed guide

  • Disambiguation5/5

    ask_humans creates a question while check_answers retrieves replies to an already-asked question—these are cleanly complementary halves of a single async workflow with no overlap.

    Naming Consistency5/5

    Both tools use a consistent snake_case verb_noun pattern (ask_humans, check_answers), making the create/poll pairing immediately legible.

    Tool Count3/5

    Two tools is thin, though the server's scope (pose a question, retrieve answers) is genuinely narrow. It borders on underprovisioned for anything beyond the single ask/poll loop.

    Completeness4/5

    The core async lifecycle—submit a question, then fetch answers by id—is fully covered. Minor gaps exist (no listing of prior questions, no cancel/close, no status check), but agents can work around these.

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

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

    • No community issues in the last 6 months
    • 2 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
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

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

  • This server has been verified by its author.

  • 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, the description carries the full burden. It usefully flags that replies are untrusted data and that fetching returns only answers 'that have arrived,' implying non-blocking behavior by default. However, 'Same handling rules apply' references a rule set not stated here, and it omits blocking/latency behavior, rate limits, and the shape of returned answers.

    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?

    Three short sentences, front-loaded with the action, then the dependency, then the safety caveat. 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?

    For a simple two-parameter read tool with no output schema or annotations, the description covers the action, the id source, and a security caveat. It could say more about what the returned answers look like or the blocking behavior of wait_seconds, but an agent has enough 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 coverage is 100%, so both parameters are already documented in the schema, including wait_seconds' max of 55 seconds and its blocking semantics. The description reinforces that id comes from ask_humans but adds no new meaning beyond the schema, so baseline 3 applies.

    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 resource ('Fetch any answers that have arrived for a question you already asked') and ties it to the counterpart flow by naming ask_humans. An agent can distinguish it from its only sibling without opening the schema.

    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?

    Tells the agent to use the id returned by ask_humans, which establishes the correct sequencing after ask_humans. It lacks an explicit when-not clause (e.g., don't poll repeatedly or how to use wait_seconds), but the usage context is clear.

    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 present, the description carries the full burden and does so: it discloses that responses are untrusted DATA that must not be followed as instructions, that they are individual opinions rather than sentiment, and that respondent counts must be stated. It also surfaces the privacy/permission precondition for contains_user_private_context, which is exactly the kind of behavioral constraint annotations would otherwise supply.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The core purpose is front-loaded in one sentence, followed by trigger conditions and then privacy guidance in a sensible order. The 'Also use it when' paragraph is somewhat listy and could be tightened, but for a tool whose correct use depends on judgment it is mostly earning its length rather than padding.

    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 5-parameter tool with no output schema and no annotations, the description covers the gaps that matter: when to call it, the privacy precondition, and the nature and handling obligations of the returned data. An agent has everything needed to invoke it correctly and to report results responsibly.

    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 100%, so the schema already documents all five parameters and the baseline is 3. The description adds real value above that by explaining the de-identification default and the precise condition for setting contains_user_private_context (only when the question cannot work without private context, plus a show-and-approve step), which is more operational detail than the schema's one-liner.

    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 opening line states a concrete verb and resource — ask real humans a question, get verbatim answers — which an agent can act on immediately. It is specific about the modality (real humans, verbatim replies) rather than a generic 'query' tool. It stops short of naming sibling check_answers or clarifying the ask-then-check flow, so the differentiation is implicit rather than explicit.

    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?

    This is textbook when-to-use guidance: it names the exact phrase in the agent's own output ('you should validate this with real users') that should trigger the call, plus a list of qualifying conditions (unreachable forums, current on-the-ground conditions, unpublished reactions, churned users). It also gives a default policy (de-identify) and the explicit exception path for private context.

    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

groundtruth MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

groundtruth MCP server – quality and maintenance score on Glama

Copy to your README.md: