com.gotfreefax/mcp
Official7 toolsby vannet
GotFreeFax
Send free or paid faxes to US/Canada from Claude, ChatGPT, and other AI agents.
Send faxes to US and Canada from AI agents.
Captured live from the server via tools/list.
send_fax
Send a fax to a US or Canada phone number. Accepts PDF, DOC, DOCX, JPG, JPEG, TXT files (max 10) as base64-encoded content.
Parameters (3)
- fax_numberstringrequired
Destination fax number (10 digits, US or Canada)
- filesarrayrequired
Array of files to fax
- notify_urlstring
Optional URL to receive fax completion notification
check_fax_status
Check the delivery status of a previously sent fax using its job_id. No authentication required — the job_id is the unforgeable token.
Parameters (1)
- job_idstringrequired
The job ID returned by send_fax
get_account_balance
Get the current page balance and dollar amount balance for the authenticated account.
No parameters.
list_sent_faxes
List faxes previously sent by the authenticated account (most recent first). Includes faxes sent via MCP, REST API, and the prepaid web form. Free anonymous sends are not included.
Parameters (2)
- limitinteger
Max records to return (1-100, default 20)
- offsetinteger
Skip first N records for pagination (default 0)
purchase_credits
Start a prepaid credit purchase. If the request is authenticated, credits will be loaded into the authenticated account after PayPal payment. If the request is not authenticated, provide email and name to create a new prepaid account (or load credits into an existing one with the same email). Returns a PayPal payment URL the user must visit to complete the purchase.
Parameters (3)
- service_typestringrequired
Purchase option. One of: prepaid10 (100 pages, $9.95), prepaid20 (250 pages, $19.95), prepaid50 (800 pages, $49.95), intprepaid50 ($49.95 international balance), intprepaid100 ($99.95 international balance), intprepaid200 ($199.95 international balance).
- emailstring
Required when the request is not authenticated. Used to create or load an existing prepaid account.
- namestring
Required when the request is not authenticated. Account holder name.
send_free_fax
Send a free fax to a US or Canada number (no account required). Limited to 3 pages total and 2 sends per email/IP per day. Returns a job_id immediately, but the fax does NOT send until the sender clicks a confirmation link emailed to sender_email. The daily-limit check happens at click time, not at submission — a submitted fax may still be rejected if the limit is hit by then; the agent can detect this by calling check_fax_status after the user reports clicking the link. If the document exceeds the free page limit, the response will suggest using purchase_credits to buy a prepaid account.
Parameters (11)
- fax_numberstringrequired
Destination fax number (10 digits, US or Canada).
- sender_namestringrequired
Sender's name (required).
- sender_emailstringrequired
Sender's email address. A confirmation link will be sent here; the fax does NOT actually send until the user clicks that link.
- receiver_namestringrequired
Receiver's name (required).
- sender_companystring
Sender's company (optional).
- sender_faxstring
Sender's fax number (optional).
- receiver_companystring
Receiver's company (optional).
- subjectstring
Subject line (optional).
- textstring
Fax body text. Either text or files must be provided.
- filesarray
Up to 3 files. Each must be base64-encoded. Free faxes are limited to 3 pages total across text + files.
- cover_sheetboolean
Include cover sheet (default true).
list_supported_formats
List all supported file formats that can be faxed.
No parameters.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.gotfreefax.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.