Connect Fax.Plus to Claude, ChatGPT, or any MCP-compatible AI client. Your assistant can send, receive, and track faxes through natural language, with one hosted endpoint and no custom integration to maintain. Available on Enterprise plans.
AI assistants like Claude and ChatGPT can already read documents, draft emails, and check your calendar. Now, they can also send and receive faxes. Once connected, your assistant handles real fax tasks without leaving the conversation. Fax.Plus is the first enterprise fax provider to ship one.
Connect Fax.Plus to Claude, ChatGPT, or any MCP-compatible AI client in minutes. Once connected, your assistant can send faxes, check your inbox, track delivery, and manage contacts through natural language, with no separate fax interface to open.
Healthcare teams spend hours per day chasing fax-based prior authorizations, referrals, and lab orders.
What your AI assistant can do:
What your team gains: Faster turnaround, less manual follow-up, and a complete audit trail.
Sample prompt:
Send the prior authorization form to BlueCross at +1 312 555 0142 and let me know when it's confirmed.
Compliance note: HIPAA-eligible workflows run on the same Fax.Plus infrastructure as your dashboard fax activity, with a BAA available on Enterprise.
Legal teams send and receive faxes daily for court filings, discovery requests, signed exhibits, and signature receipts. Each fax needs a confirmation report attached to the case file, which eats hours per week per paralegal.
What your AI assistant can do:
What your team gains: Faster turnaround on time-sensitive filings, fewer missed confirmations, and case-file documentation that builds itself.
Sample prompt:Send the motion to dismiss to the Eastern District court fax number, then save the confirmation receipt to the Henderson case folder.
Finance and insurance workflows still rely on fax for signed authorizations, claim documents, underwriting packets, and lender exchanges. The fax itself is fast; the manual handling around it is where days get lost.
What your AI assistant can do:
What your team gains: Faster cycle time on signed-document workflows, fewer manual logging steps, and a clean fax record for compliance and audit.
Sample prompts:
Government offices, courts, and public records teams handle fax volumes that haven't dropped, even as the rest of the workflow has digitized. Most of the manual time goes to logging, routing, and pulling reports for FOIA-style requests.
What your AI assistant can do:
What your team gains: Less time on inter-agency fax mechanics, audit-ready records of every transmission, and a faster path through high-volume request periods.
Sample prompt:Send the records request to the State Health Department fax number and add the confirmation to case 2026-0147.
When the business asks for fax inside an AI workflow, IT usually has two options: build a custom integration per AI tool, or block the request. Both are bad. Custom integrations multiply maintenance work; blocking the request pushes shadow IT.
What your AI assistant can do:
What your team gains: One integration that works across every MCP-compatible AI client your organization runs, with token revocation, scope control, and audit trails already in place.
Sample setup (drop-in MCP config):
Faxes sent through MCP run on the exact same Fax.Plus stack as your dashboard fax activity. The AI route doesn't change the security model . Your assistant authenticates with a token, scoped to actions you allow, revocable any time.
The Fax.Plus MCP Server and the Fax.Plus REST API connect to the same fax infrastructure. MCP is built for AI agents and natural language workflows. The REST API is built for high-volume, programmatic fax automation.
Drop the Fax.Plus MCP server into your existing AI app or agent workflow. One hosted endpoint, no local server to deploy or maintain. Working examples for the Anthropic API and the OpenAI Agents SDK.
1from anthropic import Anthropic
2
3client = Anthropic()
4
5response = client.messages.create(
6 model="claude-sonnet-4-6",
7 max_tokens=1024,
8 mcp_servers=[
9 {
10 "type": "url",
11 "url": "https://mcp.fax.plus/mcp",
12 "name": "faxplus",
13 "authorization_token": "YOUR_PERSONAL_ACCESS_TOKEN"
14 }
15 ],
16 messages=[
17 {
18 "role": "user",
19 "content": "Send the document to +1 415 555 0123 and confirm delivery."
20 }
21 ]
22)
23
24print(response.content)from agents import Agent, Runner
from agents.mcp import MCPServerStreamableHttp
async def main():
async with MCPServerStreamableHttp(
params={
"url": "https://mcp.fax.plus/mcp",
"headers": {
"Authorization": "Bearer YOUR_PERSONAL_ACCESS_TOKEN"
}
}
) as fax_server:
agent = Agent(
name="FaxAssistant",
instructions="Help users send and manage faxes through Fax.Plus.",
mcp_servers=[fax_server],
)
result = await Runner.run(
agent,
"Send the document to +1 415 555 0123 and confirm delivery."
)
print(result.final_output)Connect Fax.Plus to Claude, ChatGPT, or any MCP-compatible AI client.