Manage your faxes with AI using Fax.Plus MCP

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.

Copy a prompt for your AI assistant

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.

클로드 챗GPT 커서 코파일럿 제미니
Fax.Plus
당신
오늘 팩스 받은 게 있나요?
Fax.Plus
오늘 아침에 팩스 2통을 받으셨습니다.
📄
+1 415 548 5563 9:38 AM · 23 pages ✓ Received
📄
+1 312 555 0142 11:15 AM · 4 pages ✓ Received
당신
두 번째 메시지를 +1 212 555 0199로 전달해 주세요.
Fax.Plus
Fax submitted to +1 212 555 0199.
4 pages · queued

Fax.Plus 서버의 기능

클로드(Claude)나 챗GPT(ChatGPT)와 같은 AI 비서는 이미 문서를 읽고, 이메일 초안을 작성하며, 일정을 확인해 줄 수 있습니다. 이제 팩스를 보내고 받는 기능까지 추가되었습니다. 연결만 하면, 비서가 대화를 중단하지 않고도 실제 팩스 업무를 처리해 줍니다. Fax.Plus 이러한 기능을 제공하는 최초의 enterprise 서비스 Fax.Plus .

대량 팩스 전송 아이콘

For you or your team

도구 간 전환 횟수 감소

You or your team can ask for fax actions where you already work, in Claude, ChatGPT, or any MCP-compatible assistant. No tab switching, no separate fax UI, no copy-pasting recipient numbers. It all stays in one conversation.
개발 리소스 불필요

IT 담당자 및 개발자 여러분께

모든 AI 클라이언트를 위한 단일 통합 솔루션

MCP를 통해 Fax.Plus 연결하면, 팀에서 사용하는 모든 AI 클라이언트가 동일한 보안 액세스 권한을 갖게 됩니다.
개별 도구별 래퍼가 필요 없으며, 새로운 AI 어시스턴트가 출시될 때마다 유지 관리해야 할 맞춤형 통합 기능도 없습니다.
Fax.Plus 서버는 호스팅 방식으로 운영되며, 토큰 기반 인증과 세분화된 권한 범위를 지원합니다.

What your AI assistant can do with Fax.Plus

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.

Manage fax numbers

View your fax numbers and their details, and update number assignments when your permissions allow.

Manage your outbox

Review outgoing faxes, resend a fax, or update and delete queued faxes.

Start with a simple request

Copy a prompt below and send it to your connected assistant.

01 / SEND

Send a document

Choose your document in the Fax.Plus upload flow when your assistant prompts you.

Help me send a fax.

Copy prompt

02 / RECEIVE

Catch up on your inbox

Narrow the results by date or sender to find the item you need.

Show me the faxes I received today.

Copy prompt

03 / TRACK

Check delivery status

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?

Copy prompt

Available actions depend on your account permissions and AI client.

Send a document

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.

Catch up on your inbox

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.

Check what happened next

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.

Add fax capabilities to your own AI workflow

Build fax actions into an MCP-compatible agent or application.

  • A hosted MCP endpoint.

    Connect to Fax.Plus without deploying your own fax MCP server.

  • Authentication that fits your client.

    Connect with OAuth on any paid plan. Enterprise plans also support Personal Access Tokens with the scopes your workflow needs.

  • Tools for multi-step tasks.

    Use one tool’s result to inform the next step in your agent’s task.

Explore the MCP documentation

기존 AI 앱이나 에이전트 워크플로에 Fax.Plus 서버를 통합하세요. 호스팅되는 단일 엔드포인트로, 별도의 로컬 서버를 배포하거나 유지 관리할 필요가 없습니다. Anthropic API 및 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)

Your connection details

Server URL

https://mcp.fax.plus/mcp

Copy server URL

Server

Hosted by Fax.Plus

인증

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.

Frequently asked questions

Fax.Plus 서버란 무엇인가요?

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.

Fax.Plus 호환되는 AI 클라이언트는 무엇인가요?

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.

What do I need to get started?

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.

Can I use MCP with a HIPAA or PHIPA account?

No. Fax.Plus MCP is not available for accounts with Advanced Security Controls enabled, including HIPAA and PHIPA accounts.

AI 비서가 제 팩스 내용을 볼 수 있나요?

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.

AI 비서의 기능을 제한할 수 있나요?

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.

Which Fax.Plus plan do I need?

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.

Fax.Plus REST API와 함께 사용할 수 있나요?

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.

Explore more ways to connect your fax workflow

Discover other ways to reduce manual tasks, fax from your everyday apps, and keep your team informed.

Make faxing part of your AI workflow

Follow the setup guide or find a plan for your needs.