Back to Browse

Ictfax MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

List and track faxes on ICTFax, and send faxes when writes are enabled, over ICTCore REST.

About

List and track faxes on ICTFax, and send faxes when writes are enabled, over ICTCore REST.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (4/4 approved).

8 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

ICTCore REST base URL of your ICTFax server, normally ending in /api, e.g. https://your-ictfax/api.Optional

Environment variable: ICTFAX_BASE_URL

API account email (ICTCore logs in by email).Optional

Environment variable: ICTFAX_USERNAME

Password for the account.Required

Environment variable: ICTFAX_PASSWORD

Account id to send faxes from. Defaults to 1.Optional

Environment variable: ICTFAX_ACCOUNT_ID

Unlocks uploading documents and sending faxes, which dials a real number and can cost money. When false those tools are not registered at all. Leave off unless you mean it.Optional

Environment variable: ICTFAX_MCP_ALLOW_WRITE

Per request timeout in milliseconds. Defaults to 30000.Optional

Environment variable: ICTFAX_TIMEOUT_MS

Skip TLS certificate verification. Only for a self-signed test server.Optional

Environment variable: ICTFAX_TLS_INSECURE

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-ictinnovations-ictfax-mcp": {
      "env": {
        "ICTFAX_BASE_URL": "your-ictfax-base-url-here",
        "ICTFAX_PASSWORD": "your-ictfax-password-here",
        "ICTFAX_USERNAME": "your-ictfax-username-here",
        "ICTFAX_ACCOUNT_ID": "your-ictfax-account-id-here",
        "ICTFAX_TIMEOUT_MS": "your-ictfax-timeout-ms-here",
        "ICTFAX_TLS_INSECURE": "your-ictfax-tls-insecure-here",
        "ICTFAX_MCP_ALLOW_WRITE": "your-ictfax-mcp-allow-write-here"
      },
      "args": [
        "-y",
        "ictfax-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

ictfax-mcp

A Model Context Protocol server for ICTFax, the open-source fax server built on the ICTCore framework by ICT Innovations.

It lets an AI assistant list fax transmissions and check their status, and — only when you turn writes on — upload a document and send a fax.

Install

npx -y ictfax-mcp      # no install
npm install -g ictfax-mcp

Requires Node.js 18 or newer.

Configure

VariableRequiredDefault
ICTFAX_BASE_URLyesICTCore REST base, normally ending in /api, e.g. https://your-ictfax/api
ICTFAX_USERNAMEyesAPI account email (ICTCore logs in by email)
ICTFAX_PASSWORDyesPassword for that account
ICTFAX_ACCOUNT_IDno1Account id to send faxes from
ICTFAX_MCP_ALLOW_WRITEnofalseUnlock upload/send (see Safety)
ICTFAX_TIMEOUT_MSno30000Per-request timeout
ICTFAX_TLS_INSECUREnofalseSkip TLS verification — self-signed test servers only

Claude Desktop example

{
  "mcpServers": {
    "ictfax": {
      "command": "npx",
      "args": ["-y", "ictfax-mcp"],
      "env": {
        "ICTFAX_BASE_URL": "https://your-ictfax/api",
        "ICTFAX_USERNAME": "admin@example.com",
        "ICTFAX_PASSWORD": "your-password"
      }
    }
  }
}

Tools

Read tools are always available:

ToolWhat it does
ictfax_list_faxesList fax transmissions (id, contact, status, direction)
ictfax_get_fax_statusStatus of one transmission by id

Write tools appear only when ICTFAX_MCP_ALLOW_WRITE=true:

ToolWhat it does
ictfax_upload_documentUpload a local PDF as a fax document; returns a document_id
ictfax_send_faxSend a local document as a fax to a number — dials a real number

Safety

The server is read-only by default. Sending a fax dials a real number and can cost money, so ictfax_upload_document and ictfax_send_fax are not registered at all unless you set ICTFAX_MCP_ALLOW_WRITE=true.

How it connects

ICTFax runs on ICTCore, which authenticates with a JWT from POST /authenticate (login by email) and reads it back from the Authorization: Bearer header. Sending a fax is a short chain the server handles for you: upload the document (metadata then raw bytes, which ICTFax converts to fax format), create the recipient and a sendfax program, create the transmission and send it.

About

Built by Tahir Almas at ICT Innovations — the team behind ICTFax, ICTPBX, ICTContact, ICTDialer and the ICTCore framework these share. ICTFax is free and open source; learn more at ictfax.org.

MIT licensed. Issues and PRs welcome at github.com/ictinnovations/ictfax-mcp.

Reviews

No reviews yet

Be the first to review this server!