01 / SEND
Send a document
Choose your document in the Fax.Plus upload flow when your assistant prompts you.
Help me send a fax.
Connect Claude, ChatGPT, or another compatible AI assistant to your Fax.Plus account. Send a fax, check your inbox, or track delivery with a simple, natural-language request.
Available on paid Fax.Plus plans, starting with Basic.
Describe how you handle faxes today and get suggestions tailored to your work.
Click an icon to copy a prompt, then paste it into your AI assistant.
Your question for ChatGPT
Help me explore how Fax.Plus MCP could fit into my daily work using ChatGPT. First ask what I use fax for and which part of the process takes the most effort. Ask only for context I have not provided, then wait for my answers. Do not ask which AI assistant I use. Then suggest up to three relevant workflows. For each, explain the task, the steps including anything I still do manually, and one example request. Recommend one simple workflow to try first and how to verify its result. If it is not a good fit, explain why. Use ChatGPT's current custom MCP app capabilities; check plan and workspace requirements before recommending a connection. Verify capabilities and requirements using https://www.fax.plus/mcp, https://apidoc.fax.plus/get-started/fax-plus-mcp, https://www.fax.plus/pricing and official ChatGPT documentation. Cite sources and flag conflicts or sources you cannot access. Fax.Plus currently requires a paid plan starting with Basic and excludes accounts with Advanced Security Controls enabled, including HIPAA and PHIPA. Verify any newer changes. Do not assume other apps are connected or background automation is available. Distinguish fax submission from confirmed delivery. Keep the advice practical and concise. This is planning only: do not send faxes or change settings.
Les assistants IA comme Claude et ChatGPT peuvent déjà lire des documents, rédiger des e-mails et consulter votre agenda. Désormais, ils peuvent aussi envoyer et recevoir des fax. Une fois connecté, votre assistant gère de véritables fax. fax effectuer des tâches sans quitter la conversation. Fax .Plus est le premier enterprise fax fournisseur pour en expédier un.
Use the tools your account permissions allow.
Explore MCP tools →Submit documents to fax numbers worldwide.
Search incoming faxes and download individual pages or complete documents.
Retrieve delivery confirmations and fax reports.
Create and update fax contacts and shared contact groups.
View your fax numbers and their details, and update number assignments when your permissions allow.
Review outgoing faxes, resend a fax, or update and delete queued faxes.
01 / SEND
Choose your document in the Fax.Plus upload flow when your assistant prompts you.
Help me send a fax.
02 / RECEIVE
Narrow the results by date or sender to find the item you need.
Show me the faxes I received today.
03 / TRACK
Check whether your fax is still in progress, has been delivered, or failed. A submitted fax is not yet a delivery confirmation.
What is the delivery status of my latest fax?
Available actions depend on your account permissions and AI client.
01 / SEND
Ask your assistant to start a fax, then choose your document in the Fax.Plus upload flow. Follow the conversation as your fax is submitted and its delivery status becomes available.
Help me send a fax.
02 / RECEIVE
Ask which faxes arrived today or look for a fax from a particular sender. Find the item you need before deciding what to do next.
Show me the faxes I received today.
03 / TRACK
Find out whether a fax is still in progress, has been delivered, or failed. Ask for its current status when you need an update.
What is the delivery status of my latest fax?
Use these prompts after connecting your assistant. Available actions depend on your account permissions and AI client.
Build fax actions into an MCP-compatible agent or application.
Connect to Fax.Plus without deploying your own fax MCP server.
Connect with OAuth on any paid plan. Enterprise plans also support Personal Access Tokens with the scopes your workflow needs.
Use one tool’s result to inform the next step in your agent’s task.
Laissez tomber Fax Intégrez le serveur .Plus MCP à votre application d'IA ou à votre flux de travail d'agents existant. Un seul point de terminaison hébergé, aucun serveur local à déployer ni à maintenir. Exemples fonctionnels pour l'API Anthropic et le SDK OpenAI Agents.
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)Your connection details
Server
Hosted by Fax.Plus
Authentification
OAuth on all paid plans; Personal Access Token on Enterprise
Configuration
Use your client or SDK’s documented format
Building a backend integration? Explore the Fax.Plus REST API.
It connects a compatible AI assistant to your Fax.Plus account through the Model Context Protocol (MCP). You can request fax tasks in plain language without building an integration yourself.
Your AI client must support remote MCP connections and a compatible authentication method. See the Claude and ChatGPT setup tabs above, or check your client’s documentation. Availability and supported actions can vary by app, plan, device, and workspace permissions.
You need a paid Fax.Plus plan and an AI client that supports remote MCP connections. Basic, Premium, and Business require an OAuth-capable client. Enterprise also supports Personal Access Tokens. A workspace administrator may need to enable access.
No. Fax.Plus MCP is not available for accounts with Advanced Security Controls enabled, including HIPAA and PHIPA accounts.
Your assistant can receive information returned by the Fax.Plus actions you authorize. What it can access depends on the permissions granted and the tools used. Review your AI provider’s privacy and data-use settings before sharing sensitive information.
Yes. Access depends on your Fax.Plus account permissions and the permissions granted to the connection. Review the requested access during OAuth sign-in. On Enterprise, you can also use a Personal Access Token with only the scopes your workflow needs.
Fax.Plus MCP is available on paid plans, starting with Basic. Basic, Premium, and Business connect through OAuth; Enterprise also supports Personal Access Tokens. The Free plan and accounts with Advanced Security Controls enabled are excluded. Your AI provider may have separate plan or workspace requirements.
Yes. Use MCP for tasks through an AI assistant and the REST API for integrations controlled by your application. The REST API has its own access requirements; MCP availability on a paid plan does not imply REST API access.
Discover other ways to reduce manual tasks, fax from your everyday apps, and keep your team informed.
Follow the setup guide or find a plan for your needs.