Skip to main content
Glama
pokys
by pokys

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 has a clearly distinct purpose: search products, fetch detailed offers for a specific product, and compare a whole shopping list. There is no meaningful overlap between any pair, and the descriptions emphasize their different inputs and outputs.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern in snake_case: search_products, get_product_offers, compare_shopping_list. The verbs clearly indicate the action and the object indicates the resource.

    Tool Count5/5

    Three tools is a compact but well-scoped set for a narrow domain. Each tool earns its place: search handles discovery, get_product_offers handles per-product detail, and compare_shopping_list handles batch comparison.

    Completeness4/5

    The core workflow of searching products, viewing offer details, and comparing a shopping list is covered with no dead ends. Minor gaps exist, such as no explicit store listing or category browsing tool, but these do not undermine the server's stated purpose.

  • Average 4.1/5 across 3 of 3 tools scored.

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

    • No community issues in the last 6 months
    • 18 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • 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

  • Behavior4/5

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

    The annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior, so the description focuses on additional behavior: it loads a public endpoint, deduplicates recommended and price-based offers, and labels club/application/quantity conditions. It adds meaningful processing context beyond the structured annotations, though it does not discuss edge cases or failure modes.

    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 entire description is one dense sentence that front-loads the action and resource, then adds two valuable behavioral notes about deduplication and condition marking. There is no filler, repetition, or unnecessary context.

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

    Completeness2/5

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

    The output schema and annotations cover return structure and safety, but with six parameters, zero required fields, and very low schema coverage, the description leaves significant ambiguity about invocation. In particular, it presents slug as part of the endpoint while the schema marks no parameters as required, which could confuse an agent about what must be supplied.

    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 description coverage is only 17%, with only validOn having a real description in the schema. The description hints at slug via the endpoint template and at condition labeling, but it does not explain stores, location, productUrl, excludeMembershipOnly, or how they affect results. It fails to compensate for the otherwise low 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 identifies the action ('Načte' / loads), the resource ('veřejný detail /sleva/{slug}'), and the distinguishing post-processing behaviors: deduplicating offers and marking club, application, and quantity conditions. This makes it clearly distinct from siblings like search_products or compare_shopping_list, which are about discovery and comparison across products.

    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 a specific product slug is available and the agent needs its offers, but it does not explicitly state when to prefer this tool over search_products or compare_shopping_list. There is no mention of exclusions, prerequisites, or alternative routing.

    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?

    The annotations already mark the tool read-only, idempotent, and non-destructive, and the description adds substantial behavior beyond that: it discloses the source type (public server-rendered HTML), default date semantics, automatic packaging-term separation, match.confidence/match.quality output fields, and the important caveat that results reflect data location, not stock availability. There is no contradiction with annotations.

    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?

    Five dense sentences are ordered well: search source, default date behavior, query handling, match metadata, and the key limitation. Each sentence earns its place and there is no repeated schema information or filler.

    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?

    Despite 10 parameters and only 30% schema coverage, the description explains the tool's core behavior, defaults, query nuance, output metadata, and a crucial non-goal (stock confirmation); an output schema exists for return semantics. It falls short only on full parameter guidance and explicit sibling routing, but it is still largely complete for correct high-level use.

    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 description coverage is only 30%, so the description carries a heavy burden for parameter meaning. It adds some value by explaining that packaging details in the query are separated automatically, but it does not address limit, sortBy, stores, location, onlyOnSale, excludeMembershipOnly, or other parameters. Most parameter semantics remain undocumented in both the schema and the description.

    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 names a concrete action ('Vyhledá nabídky') and a precise target ('veřejném server-renderovaném HTML Kupi.cz'), with the title further scoping it to 'akční produkty na Kupi.cz'. This clearly differentiates the tool from offer-lookup and shopping-list comparison siblings even without naming them.

    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 provides useful behavioral caveats: it defaults to today's deals, does not present future deals as current, and is not a stock-availability confirmation. However, it never explicitly tells the agent when to choose search_products over get_product_offers or compare_shopping_list; usage is only implied through purpose and caveats.

    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?

    Annotations already declare readOnly=true, openWorld=true, idempotent=true, and destructive=false. The description adds substantial behavioral detail: default date scope, package-count rounding, low-confidence products going to unresolvedItems, partial status with null totalPrice and resolvedPrice, and the approximation/distance/stock limitation. No contradiction with annotations.

    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 front-loaded with the tool's purpose and then delivers compact behavioral rules: date default, quantity semantics, unresolved items, partial results, and limitations. Every sentence earns its place with no filler 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?

    For a 10-parameter tool with an output schema and strong annotations, the description covers the most important behaviors and caveats clearly. It still leaves some optional parameters like optimization modes, allowedStores/excludedStores, and requireCompleteBasket to schema-only documentation, and it does not explicitly route between this tool and its siblings.

    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 only 30%, so the description must compensate. It meaningfully explains the critical amount+unit semantics with a concrete example and package-count recalculation, and it steers away from deprecated quantity/preferredPackage. It does not cover optimization, requireCompleteBasket, or store-filter parameters, but those are at least present in 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 states a specific verb and resource: comparing leaflet offers for multiple items while respecting stores, memberships, and maxStores. This clearly differentiates it from the sibling tools search_products and get_product_offers, which are individual product/offer lookups.

    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 clear context: it is for multi-item basket optimization, defaults to today's valid actions, and explains quantity input via amount+unit. It does not explicitly name alternatives or say when not to use it, but the intended use case is evident.

    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

kupi-mcp MCP server

Copy to your README.md:

Score Badge

kupi-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/pokys/kupi-mcp'

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