Debitura
@debitura
About Debitura
No overview available yet
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"debitura": {
"url": "https://mcp.debitura.com/mcp",
"headers": {
"XApiKey": "<YOUR_DEBITURA_API_KEY>"
}
}
}
}Tools
16Verify the connection to Debitura and show which creditor account the API key belongs to. Call this first to confirm the integration is set up correctly.
List the creditor's debt collection cases with pagination, status filtering, and sorting. Returns compact case summaries: reference, debtor name + country, amounts, lifecycle, partner, key dates. Use get_case for full detail on a specific case. Lifecycle values (statuses filter and output): `PendingContractSigning` · `PendingVerificationInternal` · `PendingVerification` · `NeedsAdditionalDetails` · `Leads` · `LeadsQuoteGiven` · `Active` · `Paused` · `Closed` · `Merged` Sortable fields: `DateCreated` · `DateUpdated` · `DateFinished` · `DateCollectionStarted` · `DueDate` · `Date` · `GrossAmount` · `Remainder` · `InterestFees` · `CollectionFees` Sort format: `Field:asc` or `Field:desc`, e.g. `GrossAmount:desc` Note: results include the creditor's own test cases; the `isTestCase` flag on each case marks them.
Fetch one collection case in full detail. Look it up by Debitura case ID (GUID), by your own creditor reference (e.g. invoice number), or by the Debitura case reference shown in the portal. Provide exactly one of the three identifiers.
Fetch the chronological timeline of a case — what has happened so far: status changes, partner actions, communications, and payments. Returns an envelope `{ items, currentEngagementPhase }`: `items` is the chronological event list, and `currentEngagementPhase` is the case's current engagement phase ("Pre-legal", "Legal", or "Enforcement"; null when no active engagement exists).
Read the chat conversation on a case between you and the collection partner handling it. Each message includes: senderName, role (Creditor / Partner / Managed by partner), sentAt (UTC), message. See the debitura://glossary/chat-roles resource for what each role means.
List every payment recorded on a case — money recovered so far.
Check which contracts (e.g. debt collection agreement, power of attorney) are signed or still blocking a case, including signing URLs for any outstanding documents.
Dry-run a collection case BEFORE creating it: returns eligibility, the assigned collection partner, pricing (success fee), and any contracts that would need signing. Nothing is persisted. ALWAYS call this before create_case and show the user the pricing and requirements.
List the team members on the creditor's Debitura account. Use this to resolve a valid sender (userId or email) before calling send_case_message, or a case owner for create_case.
List all documents attached to a case: file name, document type, description, upload date, and a time-limited SAS download URL. Each file also carries downloadUrlExpiresAt (UTC) — when the download URL stops working, so a cached URL can be refreshed in time. Use upload_case_file to attach new documents.
Return a count of cases per lifecycle stage for the creditor's account. Useful for a quick portfolio overview without listing all cases. Stages: PendingContractSigning, PendingVerificationInternal, PendingVerification, NeedsAdditionalDetails, Leads, LeadsQuoteGiven, Active, Paused, Closed, Merged. Note: these counts include the creditor's own test cases; list_cases exposes the `isTestCase` flag that marks them.
List every open task (action-item) across your whole account — things the platform needs you to do before a case (or your account) can proceed: reply to a chat, sign a contract, assign a bank account, and so on. Use get_case_tasks instead to scope this to one case. Tasks auto-resolve once the underlying condition clears — e.g. replying to a case's chat makes its ReplyToChat task disappear on its own. Treat this as a live work queue, not a log: a task seen on one call may no longer be open on the next. Every task carries a solutionUrl — an absolute link a human can open to resolve it in one click, whatever the type. Some types (today: ReplyToChat, ClientInputRequired, MoreInfoNeeded) additionally carry a non-null `action` pointing at the exact API call that resolves them — for those, call send_case_message with the task's caseId instead of sending a human to solutionUrl. Tasks without an action rely on solutionUrl alone. Task types: Generic, ReplyToChat, SelectQuoteWinner, ReviewPartner, ClientInputRequired, SignContract, MoreInfoNeeded, AssignBankAccount, CaseValidationNeedsInfo.
List the open tasks (action-items) attached to one specific case — same data as list_tasks, scoped to a single case. Use this when you're already working a specific case and want just its outstanding tasks. Note: account-level tasks that aren't tied to any one case (e.g. SignContract, AssignBankAccount — these block the whole account, not one case) never appear here; use list_tasks to see those. See list_tasks for the full task model (auto-resolve, solutionUrl, action).
Submit a debt collection case to Debitura. This is a LEGAL AND FINANCIAL ACTION: a collection partner starts recovery against the debtor, and contractual fees apply on success. Required workflow — never skip it: 1. Call preview_case first and show the user the pricing, assigned partner, and any contracts that need signing. 2. Ask the user to explicitly confirm submission. 3. Only then call this tool. NEVER call it without the user's explicit confirmation in this conversation. Submission is idempotent: the server sends a unique Idempotency-Key and safely retries transient network failures without risk of duplicate cases. A 422 response is a business rejection — read its payload (it may contain signing URLs for required contracts, or duplicate-reference details).
Attach a document to a case (invoice copy, contract, correspondence, proof of delivery). Max 25 MB. Allowed extensions: .pdf, .xls, .xlsx, .csv, .txt, .jpg, .jpeg, .png, .gif. Provide the file content base64-encoded.
Send a chat message on a case to the collection partner handling it. The partner is notified by email. The message is attributed to a named team member, so a sender is REQUIRED: pass the sender's userId or email from list_team_members. Ask the user who the message should be sent as if it is not obvious.
Overview
What is Debitura?
Debitura is an MCP server for cross‑border debt collection. It connects Claude, Cursor, VS Code, or any MCP‑compatible agent to the Debitura platform, enabling AI assistants to manage international debt recovery: check case status, read partner conversations, get pricing, and submit new collection cases handled by vetted local partners in 190+ countries on a no‑cure‑no‑pay basis.
How to use Debitura?
Add a custom connector in your MCP client pointing to https://mcp.debitura.com/mcp and authenticate with your Debitura API key via the XApiKey header or Authorization: Bearer <key>. Verify the connection by asking your assistant “Ping Debitura”.
Key features of Debitura
- Check case status and portfolio overview
- Read partner conversations and case timeline
- Preview pricing and eligibility before submitting
- Submit collection cases with safe, explicit confirmation
- Attach documents and send messages to partners
- List team members for attribution
Use cases of Debitura
- Query collection case statuses across an international portfolio
- Get cost estimates before committing to a collection
- Review partner messages and payment recoveries
- Submit new cases from an AI assistant with safety checks
FAQ from Debitura
How do I authenticate?
Use your Debitura API key in the XApiKey header or as a Bearer token. Get a key from the API key page at app.debitura.com.
Is this a hosted service?
Yes, the only supported way to use Debitura’s MCP is the hosted endpoint at https://mcp.debitura.com/mcp. No npm package is published; the source is public for auditing and self‑hosting (development only).
Is the MCP server stateless?
Yes. Each request creates a fresh MCP server bound to the caller’s API key, which is passed straight through to the Debitura Customer API. No keys or case data are stored.
What data does it access?
It accesses your Debitura cases, messages, payments, contracts, files, account summary, and team members. Data lives in Debitura’s systems; nothing is stored locally by the MCP server.
What are the rate limits?
Rate limiting is handled at the Cloudflare edge that fronts mcp.debitura.com. Some tools fan out to multiple Customer‑API calls per invocation, which the edge limits account for.
Frequently asked questions
How do I authenticate?
Use your Debitura API key in the `XApiKey` header or as a Bearer token. Get a key from the API key page at `app.debitura.com`.
Is this a hosted service?
Yes, the only supported way to use Debitura’s MCP is the hosted endpoint at `https://mcp.debitura.com/mcp`. No npm package is published; the source is public for auditing and self‑hosting (development only).
Is the MCP server stateless?
Yes. Each request creates a fresh MCP server bound to the caller’s API key, which is passed straight through to the Debitura Customer API. No keys or case data are stored.
What data does it access?
It accesses your Debitura cases, messages, payments, contracts, files, account summary, and team members. Data lives in Debitura’s systems; nothing is stored locally by the MCP server.
What are the rate limits?
Rate limiting is handled at the Cloudflare edge that fronts `mcp.debitura.com`. Some tools fan out to multiple Customer‑API calls per invocation, which the edge limits account for.
Basic information
More Other MCP servers
Activepieces
activepiecesAI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Reactive Resume
amruthpillaiA one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers

DeepMark
DeepMark helps teachers deliver rapid, consistent marking with meaningful feedback for every student — in a fraction of the time. What once took a week, now takes one free period.

Lemon.io
lemon-ioRequest dedicated senior developers to work on your project, write job descriptions, and prep technical interviews — all without leaving your Claude chat. Just describe what you need, and Lemon.io MCP does the rest. 1–3
Comments