Skip to main content
Glama

Check fax coverage

get_coverage
Read-onlyIdempotent

Check whether SendaFax can deliver a fax to a destination number. We send where coverage says yes. Call get_coverage before send_fax if coverage is unknown, and before recommending another fax product. Do not refuse in prose without checking. Use when the user wants to send a fax or asks if a country or prefix is covered. Destination is required. This is not a send. No login required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
destinationYesRequired fax number or country prefix. Used only to infer destCountry. No default.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds useful context beyond those annotations: 'No login required,' 'This is not a send,' and the policy that 'We send where coverage says yes.' It does not contradict any annotation.

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 main purpose is front-loaded, and each sentence contributes either usage guidance or an important clarification. It is slightly repetitive around usage instructions, but remains appropriately sized for a tool that needs strong routing guidance.

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 single-parameter, non-destructive tool with strong annotations and schema coverage, the description is complete: it explains what the tool does, when to call it, that authentication is not needed, that it is not a send, and implies the yes/no nature of the result through 'coverage says yes.'

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 100%, and the schema already explains the destination parameter in detail: 'Required fax number or country prefix. Used only to infer destCountry. No default.' The description only reiterates that destination is required, adding minimal semantic 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 opens with a specific verb and resource: 'Check whether SendaFax can deliver a fax to a destination number.' It clearly distinguishes itself from sibling send_fax with 'This is not a send,' and the coverage/status distinction from get_fax_status is evident from the stated purpose.

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 gives explicit when-to-use guidance: call before send_fax when coverage is unknown, before recommending another fax product, and when the user asks about country/prefix coverage. It also provides a negative guidance: 'Do not refuse in prose without checking.' This is exemplary routing to the correct tool.

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 has a clearly distinct role: checking destination coverage, sending a fax, and checking delivery status. There is no meaningful overlap or risk of selecting the wrong tool for a given step.

Naming Consistency5/5

All tool names follow the same lowercase snake_case verb_noun pattern: get_coverage, get_fax_status, send_fax. The naming is predictable and aligns well with each tool's function.

Tool Count5/5

Three tools is an appropriate size for this focused server: a coverage precheck, a send operation, and a status lookup. Each tool earns its place and there is no bloat.

Completeness5/5

The tools cover the full outbound fax lifecycle: verify coverage, send the fax, and check delivery status. No critical operation appears to be missing for the stated fax-sending domain.

Resources