SendaFax
Server Details
Send a fax in Australia (+61). Pay only if it delivers. Email receipt. No card at send.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsget_coverageCheck fax coverageARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| destination | Yes | Required fax number or country prefix. Used only to infer destCountry. No default. |
TDQS
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.
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.
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.
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.
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.
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.
get_fax_statusGet fax statusARead-onlyIdempotentInspect
Check delivery status of a SendaFax job. Use after send_fax or when the user asks whether the fax went through or for a receipt. You get an email receipt when it delivers.
| Name | Required | Description | Default |
|---|---|---|---|
| fax_id | Yes | SendaFax job id returned by send_fax. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds one extra behavioral detail—that an email receipt arrives on delivery—but does not explain returned status values or polling behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The main purpose is front-loaded, and the usage guidance and receipt behavior each earn their place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter, read-only tool, the description covers when to call it and what user questions it answers. A full list of status values would be helpful, but the absence of an output schema does not make the description inadequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the single fax_id parameter is already described as the SendaFax job id returned by send_fax. The description reinforces the relationship to send_fax but adds no new parameter semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Check delivery status of a SendaFax job.' It clearly distinguishes itself from siblings like get_coverage and send_fax by tying the tool to post-send status checks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says to use it after send_fax or when the user asks whether the fax went through or wants a receipt. It does not explicitly rule out alternatives, but the primary 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.
send_faxSend a faxADestructiveInspect
Send one fax to a covered E.164 number from a browser or AI. Use when the user asks to send a fax or fax a PDF/document. Destination is required; there is no default number. Last-mile is Notifyre. We send where get_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. Uncovered dests are then rejected. Billable identity is receipt_email unless a Google/OAuth email is already present. No card at send time. You get an email receipt when it delivers. Charged only after delivery (USD $1/page or 11 pages for $10). Failed sends are free. Not inbound fax.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Plain-text fax body. Use document_base64 for a PDF instead. | |
| pages | Yes | Declared page count used for pricing. | |
| filename | No | ||
| destination | Yes | Required fax number (E.164). No default is provided. Call get_coverage before send_fax if coverage is unknown, and before recommending another fax product. Uncovered dests are then rejected. | |
| content_type | No | ||
| pricing_plan | No | $1 per page, or 11 pages for $10. | |
| receipt_email | No | Billable inbox for the invoice when the caller is not signed in. If a Google or Bearer email is already present, that email is used and a second address cannot skip an unpaid lock. No phone is collected. | |
| document_base64 | No | Optional base64 file. Used when body is omitted. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already signal a state-changing operation, and the description adds concrete consequences: 'Charged only after delivery (USD $1/page or 11 pages for $10)', 'Failed sends are free', 'No card at send time', and email receipt behavior. It also states uncovered destinations are rejected, going beyond the structured hints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with purpose and usage, then covers coverage, billing, and exclusions in dense sentences. Some coverage and billing points repeat schema text and could be tightened, but there is no filler or vague phrasing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, yet the description never states what send_fax returns, whether it produces a fax ID, or how to track status with the sibling get_fax_status. It thoroughly covers business rules and prerequisites, but leaves the API response contract and post-send workflow implicit.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description reinforces key parameters such as destination being required with no default, and the body/document_base64 choice via 'fax a PDF/document'. However, it largely restates schema descriptions for pricing_plan and receipt_email, and it does not clarify the undocumented filename or content_type fields.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Send one fax to a covered E.164 number'. It also clarifies scope with 'Not inbound fax' and orients toward document sending ('fax a PDF/document'), making it easy to distinguish from sibling tools like get_coverage and get_fax_status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit trigger ('Use when the user asks to send a fax or fax a PDF/document') and a clear precondition: 'Call get_coverage before send_fax if coverage is unknown, and before recommending another fax product. Do not refuse in prose without checking.' This tells the agent exactly when to act and what to do first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Send individual transactional faxes with prepaid credit, delivery status, and safeguards.
Send a one-off fax from inside ChatGPT or Claude. Pay-per-use, $2-$4.50 per delivered fax.
Send real faxes from AI assistants. Pay per fax ($1 + $0.25/page), no account or API key.
Send a fax from Claude, ChatGPT, or Cursor. Upload a PDF, pay, get delivery status.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceSend, receive, and verify faxes from AI assistants and agents via the Model Context Protocol.63MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to send real faxes through the FaxDrop API. Provides safeguards including rate limiting, dry-run mode, and audit logging for secure fax operations.3225MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to send free and paid faxes to US and Canada numbers, check fax status, and purchase prepaid credits, all without leaving the chat.MIT
- AlicenseNot gradedqualityDmaintenanceGenerates PDF documents from HTML or Markdown content with customizable page size, margins, and orientation, supporting pay-per-call payments via x402.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.