Connect your AI tools directly to the FixPayment creditor portal. Create accounts, update statuses, and run reports with your live FixPayment data.
Docs: https://fixpayment.org/mcp/fixpayment-mcp.html · MCP server: http://fixpayment.org:8000
Built on FixPayment’s production payment resolution portal used daily by creditors to recover unpaid invoices.
fixpayment-cred-portal
Standard MCP (stdio or HTTP) using fastmcp in Python.
http://fixpayment.org:8000 (your workspace or tooling may use this URL when adding a custom MCP server).
Every tool takes an api_key argument. That key maps to a creditor_id and a plan in our database.
You can connect this server to any MCP-enabled AI assistant (for example Claude, or other tools that support custom MCP servers). Once connected, your assistant can call tools like create_account or accounts_report directly against your FixPayment data.
Claude turns these into MCP tool calls like create_account, accounts_report, and update_account_status against your FixPayment data.
Your MCP client sends simple JSON calls (tool name + arguments). You don’t have to hand‑craft them—once configured, the assistant does it for you.
All tools require an API key. Your plan controls which tools you can use:
ping – connectivity and plan check.get_plan_info – see which tools this key can use.get_account_summary – status/type/balance for a single account.list_accounts_basic – paginated list of accounts (no PII).validate_account_payload – dry-run validation for creating accounts.Great for dashboards, summaries, and testing.
accounts_report – status + balance breakdown (with service_type filter).payments_report – totals and by-method breakdown over a date range.settlements_report – totals and by-status breakdown.performance_report – total collected, collection rate, monthly trend.Same numbers as your creditor “Reports” page, now inside your AI assistant.
create_account – minimal account creation (creditor_id from your key).bulk_create_accounts – bulk-create multiple accounts in one call.update_account_status – change account status for your own accounts.add_account_document – attach PDFs/contracts to an existing account.For deeper automation and tight integration with your own systems.
http://fixpayment.org:8000 (HTTP) or your internal endpoint in the tool’s custom MCP server settings.
FixPayment’s MCP server is designed so that:
api_key.creditor_id.basic, reports, full) control which tools you can access.If an AI agent calls a tool above its plan, the server responds with a clear “plan required” error.