{"name":"app.promptfax/promptfax","slug":"promptfax","title":"PromptFax","description":"Send a one-off fax from inside ChatGPT or Claude. Pay-per-use, $2-$4.50 per delivered fax.","url":"https://mcp.market/server/promptfax","rating":null,"grade":"C","score":57,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":5,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":28,"ok":28,"last_checked_at":"2026-09-27T13:55:54.662Z","last_ok_at":"2026-09-27T13:55:54.662Z","latency_ms":316},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":null,"version":"0.1.0","remotes":[{"type":"streamable-http","url":"https://promptfax.app/mcp"}],"packages":[],"tools":[{"name":"attach_document","description":"Fallback/non-widget tool for binding a PromptFax document or one or more HTTPS PDF URLs into the current MCP session before requesting a quote. In ChatGPT widget sessions, prefer the widget's file controls after start_session instead of calling this tool unless the widget is unavailable or the user explicitly asks for fallback behavior.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"documentId":{"type":"string","description":"PromptFax document identifier created by a prior upload or hosted session."},"fileUrls":{"minItems":1,"maxItems":5,"type":"array","items":{"type":"string","format":"uri"},"description":"One or more HTTPS URLs for PDF or image documents that PromptFax should attach to the fax workflow."}},"required":["sessionId"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"cancel","description":"Use this when you need to cancel the active PromptFax send.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"sendIntentId":{"type":"string","description":"PromptFax send intent identifier returned by get_quote or session status. Use this for checkout, send, status, retry, or cancel operations."}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"checkout","description":"Fallback/non-widget tool for starting external Stripe Checkout after the user accepts a pay-per-use quote. Payment authorization is required before PromptFax can send; PromptFax treats webhook-confirmed authorization, not browser redirect, as payment truth. In ChatGPT widget sessions, do not call this after start_session because the widget's Pay & send step opens Checkout.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"sendIntentId":{"type":"string","description":"PromptFax send intent identifier returned by get_quote or session status. Use this for checkout, send, status, retry, or cancel operations."},"autoSendAfterAuthorization":{"type":"boolean","description":"When true, PromptFax sends automatically after Stripe confirms payment authorization. When false, call send_fax after authorization."}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_quote","description":"Fallback/non-widget tool for creating a user-reviewable pay-per-use fax quote when you have a fax number and either an MCP session, a PromptFax documentId, or one or more HTTPS PDF URLs. A quote is required before Stripe Checkout and before any real fax transmission. In ChatGPT widget sessions, do not call this after start_session because the widget auto-quotes once the document and destination are ready.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"faxNumber":{"type":"string","description":"Destination US fax number. Accepts common human formats such as 415-555-0182 or E.164 format such as +14155550182."},"fileUrls":{"minItems":1,"maxItems":5,"type":"array","items":{"type":"string","format":"uri"},"description":"One or more HTTPS URLs for PDF or image documents that PromptFax should attach to the fax workflow."},"documentId":{"type":"string","description":"PromptFax document identifier created by a prior upload or hosted session."}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_status","description":"Use this when you need the latest PromptFax workflow state, quote/payment state, or fax transmission status.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"sendIntentId":{"type":"string","description":"PromptFax send intent identifier returned by get_quote or session status. Use this for checkout, send, status, retry, or cancel operations."}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"retry_failed_fax","description":"Use this after a retry-eligible failed fax to queue another attempt under the existing authorization. You may supply a corrected destination.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"sendIntentId":{"type":"string","description":"PromptFax send intent identifier returned by get_quote or session status. Use this for checkout, send, status, retry, or cancel operations."},"faxNumber":{"type":"string","description":"Optional corrected US fax number for this attempt."}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"send_fax","description":"Fallback/non-widget tool for sending after payment is authorized and the user explicitly wants to send now. In ChatGPT widget sessions, do not call this after start_session unless the widget is unavailable or the user explicitly asks for fallback behavior.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"sendIntentId":{"type":"string","description":"PromptFax send intent identifier returned by get_quote or session status. Use this for checkout, send, status, retry, or cancel operations."}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"start_session","description":"Use this first when a user wants to send or price a fax. PromptFax is built for irregular, pay-per-use outbound faxing: every real send requires a user-reviewed quote and Stripe payment authorization before transmission. MCP clients should set hostType to identify their host: chatgpt, claude, browser, or other. In ChatGPT, pass official files[] file parameters first when they are available so PromptFax can immediately import files[].download_url; never pass a raw file_id or local path as the document. The ChatGPT widget opens for destination entry, automatic quote creation, Stripe Checkout, status tracking, and Choose PDF from ChatGPT fallback when automatic attachment is unavailable or fails. If no document is attached, tell the user to attach a document in the widget. The widget does not provide a document preview step. Do not tell ChatGPT users to get a quote; after the widget has a document and valid destination, tell them to verify the price and use Pay & send when ready. Standards-compatible MCP Apps hosts use the inline PromptFax picker, and text-only clients use the hosted PromptFax session page or attach_document with a fetchable HTTPS URL. Do not call get_quote, checkout, or send_fax for a ChatGPT widget session unless the user explicitly asks for fallback behavior or the widget is unavailable. Use get_status only for a textual status refresh.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sessionId":{"type":"string","description":"PromptFax MCP session identifier returned by start_session. Use this to continue a session-backed fax workflow."},"faxNumber":{"type":"string","description":"Destination US fax number. Accepts common human formats such as 415-555-0182 or E.164 format such as +14155550182."},"hostType":{"type":"string","description":"Identify the MCP host so PromptFax can choose the right interaction mode. Use chatgpt for ChatGPT, claude for Claude, browser for a browser-hosted app, or other for unknown clients."},"hostCapabilities":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{},"description":"Optional host capability hints, such as whether the client supports widgets, file-picking, hosted links, or other interactive surfaces."},"files":{"maxItems":5,"type":"array","items":{"type":"object","properties":{"download_url":{"type":"string","format":"uri","description":"Temporary HTTPS download URL for a host-supplied file. PromptFax can fetch this URL to attach the document."},"downloadUrl":{"type":"string","format":"uri","description":"Temporary HTTPS download URL for a host-supplied file. PromptFax can fetch this URL to attach the document."},"url":{"type":"string","format":"uri","description":"Temporary HTTPS download URL for a host-supplied file. PromptFax can fetch this URL to attach the document."},"file_id":{"type":"string","description":"Host-specific file identifier. This is useful for display or diagnostics, but PromptFax can only fetch files when a download URL is also supplied."},"fileId":{"type":"string","description":"Host-specific file identifier. This is useful for display or diagnostics, but PromptFax can only fetch files when a download URL is also supplied."},"file_name":{"type":"string","description":"Original filename reported by the host, used to help the user confirm the selected document."},"fileName":{"type":"string","description":"Original filename reported by the host, used to help the user confirm the selected document."},"mime_type":{"type":"string","description":"MIME type reported by the host, such as application/pdf or image/png."},"mimeType":{"type":"string","description":"MIME type reported by the host, such as application/pdf or image/png."}},"additionalProperties":{}},"description":"Optional host-supplied files for initial attachment. ChatGPT file parameters include files[].download_url and files[].file_id."},"metadata":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{},"description":"Optional host-specific metadata for diagnostics or session continuity."}},"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":57,"grade":"C","scanned_at":"2026-09-27T12:18:20.323Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-27T12:18:20.374Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 453ms"]},"poisoning":{"score":15,"max":15,"notes":["8 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 2 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://promptfax.app/mcp","reachable":true,"authRequired":false,"latencyMs":453,"serverInfo":{"name":"promptfax-mcp","version":"0.1.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://promptfax.app/favicon.ico","source":"site","width":48,"height":48},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":5}}}},"grade_history":[],"reviews":[]}