Skip to main content
Glama

check_coverage

Check whether CatalogAPI can supply rewards in one or more countries, and which product categories are available there. Call this when someone asks if rewards, gift cards, or incentives can be offered in a particular country, when they have recipients in several countries, or when they ask which countries are supported. This is the authoritative answer about what a country supports.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countriesNoISO-2 country codes, for example ["US", "PL"]. Omit to list every covered country.

TDQS

A4.2/5.0
Behavior3/5

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

There are no annotations, so the description carries the full burden. It implies a read-only check via the verb 'Check,' but does not explicitly state whether any side effects or authentication are required, nor does it describe the response format. However, the core behavior is clearly non-mutating given the 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 sentences, front-loaded with the action, followed by usage guidance and an authority assertion. It contains no unnecessary wording and is well-structured.

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 one-parameter check with no output schema, the description explains both what the tool does and when to use it. It could explicitly mention the response shape, but the implied outcome (which countries/categories are covered) is sufficient given the tool's simplicity.

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 input schema already fully documents the single parameter with an example and the omission behavior. The description does not add any parameter-level detail beyond what the schema provides, so the baseline 3 is 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 clearly states the tool's function: checking country coverage and product categories. It uses the specific verb 'Check' and distinguishes itself from sibling tools by focusing on geographic support rather than reward details, usage instructions, or search.

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?

The description provides explicit usage conditions: 'Call this when someone asks if rewards, gift cards, or incentives can be offered in a particular country, when they have recipients in several countries, or when they ask which countries are supported.' It also asserts itself as the 'authoritative answer,' giving clear context for when to invoke.

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.4/5.0
Disambiguation5/5

Each tool addresses a distinct question: check_coverage for country availability, search_rewards for finding examples, get_reward_details for specific item info, and how_it_works for API/service details. The descriptions clearly delineate boundaries and cross-reference each other, so an agent would not confuse them.

Naming Consistency4/5

Three tools follow a clear verb_noun pattern (check_coverage, get_reward_details, search_rewards), but how_it_works is a phrase that breaks the pattern. This is a minor deviation that does not cause confusion.

Tool Count5/5

With 4 tools, the set is tightly scoped for a catalog API: search, details, coverage check, and service info. Each tool earns its place, and the count is ideal for the apparent purpose.

Completeness5/5

The tool set covers the full user journey: check if a country is supported, browse example rewards, request specific reward details, and learn how the service works. For a read-only demonstration catalog, there are no obvious gaps.