Skip to content
VS Code

ictfax mcp for VS Code

io.github.ictinnovations/ictfax-mcp

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

client:VS Code transport:stdio runtime:npm

Install ictfax mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ictfax-base-url",
      "description": "ICTFAX_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictfax-username",
      "description": "ICTFAX_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictfax-password",
      "description": "ICTFAX_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictfax-account-id",
      "description": "ICTFAX_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictfax-mcp-allow-write",
      "description": "ICTFAX_MCP_ALLOW_WRITE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictfax-timeout-ms",
      "description": "ICTFAX_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictfax-tls-insecure",
      "description": "ICTFAX_TLS_INSECURE",
      "password": true
    }
  ],
  "servers": {
    "ictfax-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ictfax-mcp"
      ],
      "env": {
        "ICTFAX_BASE_URL": "${input:ictfax-base-url}",
        "ICTFAX_USERNAME": "${input:ictfax-username}",
        "ICTFAX_PASSWORD": "${input:ictfax-password}",
        "ICTFAX_ACCOUNT_ID": "${input:ictfax-account-id}",
        "ICTFAX_MCP_ALLOW_WRITE": "${input:ictfax-mcp-allow-write}",
        "ICTFAX_TIMEOUT_MS": "${input:ictfax-timeout-ms}",
        "ICTFAX_TLS_INSECURE": "${input:ictfax-tls-insecure}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ictfax mcp in other clients