Skip to main content
Glama

Get fax status

get_fax_status
Read-only

Get the current status of a fax. Poll this after send_fax until a terminal state.

Fax lifecycle: draft (uploaded, not submitted) -> pending (submitted, awaiting payment) -> sending -> delivered | failed. Payment lifecycle: unpaid -> verifying/open (checkout in progress) -> paid | failed | canceled | expired. A fax that fails after payment is refunded automatically to the payer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fax_idYesThe fax public id (fax_...) returned by the upload

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, but the description adds valuable behavioral context: the full lifecycle from draft to terminal states, and automatic refund after payment failure. This goes beyond the annotation's simple read-only hint.

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, using three short paragraphs with clear sentence structure. The first sentence states the purpose, and the following paragraphs detail the lifecycle without unnecessary words. Every sentence adds value.

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 low complexity (1 parameter, no nested objects, no output schema), the description provides sufficient context including the lifecycle and payment states. It could be improved by mentioning the return format, but the current content is adequate for the agent to understand the tool's behavior.

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% with a well-described parameter (fax_id with pattern and description). The description adds no additional parameter information, so a score of 3 is appropriate as the schema does the heavy lifting.

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 'Get the current status of a fax', specifying the verb (get) and resource (fax status). It is distinct from sibling tools like send_fax, check_balance, and get_price, leaving no ambiguity about the tool's purpose.

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 explicitly states to 'Poll this after send_fax until a terminal state', providing clear usage context. It also details the fax lifecycle states, which helps the agent decide when to stop polling. However, it does not explicitly mention when not to use it or suggest alternatives.

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

Each tool has a clearly distinct purpose: checking balance, getting fax status, pricing, and sending. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: check_balance, get_fax_status, get_price, send_fax.

Tool Count5/5

Four tools is appropriate for a focused fax service, covering the essential operations without unnecessary clutter.

Completeness4/5

Core workflow (price, send, status, balance) is covered. Missing cancellation or listing tools, but these are not essential for the primary use case.

Resources