xendit-mcp
The xendit-mcp server integrates with the Xendit payment API to manage invoices, balances, transactions, and disbursements across Southeast Asian markets.
Invoice Management: Create invoices with payment links (IDR, PHP, THB, VND, MYR, USD), list with filters (status, date, currency), retrieve by ID, or expire active invoices.
Balance Inquiry: Check account balance by type (CASH, HOLDING, TAX), optionally filtered by currency.
Transaction History: List payments, disbursements, refunds, fees, and adjustments with filters for type, status, currency, and date range.
Disbursements (requires
XENDIT_ENABLE_DISBURSEMENTS=true): Send funds to bank accounts or e-wallets (Indonesia/Philippines); check disbursement status by ID; list supported banks and e-wallets filtered by country/currency and channel type (BANK or EWALLET).Prompts & Resources: Quick actions for balance checks, recent payments, unpaid invoices, and daily summaries; static access to supported bank codes and API info.
Safety: Disbursement tools are disabled by default; live API keys are refused unless explicitly allowed.
Provides tools for managing Xendit payment APIs, including creating invoices, sending disbursements, checking balances, and tracking transactions across Southeast Asian countries (Indonesia, Philippines, Thailand, Vietnam, Malaysia).
xendit-mcp
Model Context Protocol server for the Xendit payment API. Supports payment links via invoices, payouts/disbursements, balances, and transactions across Indonesia, the Philippines, Thailand, Vietnam, and Malaysia.
Install
npm install -g xendit-mcpOr run on demand with npx xendit-mcp.
Related MCP server: rippr
Upgrading from 0.1.x
0.2.0 introduces breaking defaults. If you were on 0.1.x and relied on invoice creation or one-shot payouts working out of the box, those tools are now disabled by default.
To restore the old behavior, set these in your MCP config env:
XENDIT_ENABLE_INVOICE_MUTATIONS=true
XENDIT_ENABLE_DISBURSEMENTS=true
XENDIT_ENABLE_LEGACY_ONE_SHOT_DISBURSEMENT=trueIf you enable disbursements, you must also set the four safety gates (XENDIT_MAX_DISBURSEMENT_AMOUNT, XENDIT_MAX_DAILY_AMOUNT, XENDIT_ALLOWED_ACCOUNTS, XENDIT_APPROVAL_CODE) or the server will refuse to start.
The recommended migration is to adopt the new two-step payout flow (prepare_disbursement → confirm_disbursement with an approval code) instead of re-enabling the legacy one-shot. See Safety for details.
User-facing modes
Think about the product in 3 modes:
read-only: balances, invoices read, transactions readinvoices: read-only pluscreate_invoiceandexpire_invoiceguarded-payouts: invoices mode plusprepare_disbursementandconfirm_disbursement
For non-technical users, the easiest helpers are:
npx xendit-mcp doctor
npx xendit-mcp setupdoctorprints the current mode, enabled capabilities, and what is still blocked.setupgenerates a Claude Code or Claude Desktop snippet for the mode you want.
Configuration
Sign up at the Xendit Dashboard.
Go to Settings → API Keys and generate a key.
Use a test key (
xnd_development_...) for development or a live key for production.
Variable | Required | Description |
| yes | Test or live API key |
| no | Set to |
| no | Set to |
| no | Set to |
| no | Hard cap for one money-out call. Set to |
| no | Rolling 24-hour cap across money-out calls. Set to |
| no | Comma-separated allowlist in |
| no | How long a prepared disbursement token stays valid. Defaults to |
| no | Required when |
| no | Set to |
Guided setup
If you do not want to hand-edit env vars, run:
npx xendit-mcp setupIt will ask which client you use and which mode you want, then output a ready-to-paste Claude config snippet with placeholders for secrets.
If the MCP is already connected in Claude, you can also ask Claude to use:
get_workspace_modeguided_setup
guided_setup uses MCP elicitation in Claude Code when available, so the user sees a form instead of raw config details.
Claude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
"xendit": {
"command": "npx",
"args": ["-y", "xendit-mcp"],
"env": {
"XENDIT_API_KEY": "your-api-key"
}
}
}
}Claude Code
claude mcp add xendit --env XENDIT_API_KEY=your-api-key -- npx -y xendit-mcpCursor
Add to ~/.cursor/mcp.json with the same shape as Claude Desktop.
Tools
Tool | Description |
| Explain which Xendit mode is active, what is enabled, and the safest next step to unlock more features. |
| Generate a Claude Code or Claude Desktop config snippet for |
| Account balance by type (CASH, HOLDING, TAX). |
| List invoices filtered by status, date range, or currency. |
| Retrieve a single invoice. |
| Create a payment invoice and return a payment link. Disabled unless |
| Expire an active invoice. Disabled unless |
| List payments, payouts, refunds, transfers, and balance adjustments. |
| Stage a money-out call and return a short-lived confirmation token. Disabled unless |
| Execute a previously prepared money-out token. Requires |
| Cancel a prepared money-out token. Disabled unless |
| Legacy one-shot payout/disbursement. Requires |
| Check payout/disbursement status. Disabled unless |
| List payout channels such as |
Prompts
Prompt | Description |
| Report account balance. |
| Payments received in the last N days. |
| Generate a payment link for a customer. Disabled unless |
| List pending invoices. |
| Today's payment activity. |
Resources
Resource | URI | Description |
Supported Banks |
| Common payout channel aliases for Indonesia and the Philippines. |
Setup Guide |
| Current mode, setup commands, and plain-English mode explanations. |
API Info |
| Xendit API overview and doc links. |
Example queries
What's my current Xendit balance?
Saldo Xendit saya berapa?
With `XENDIT_ENABLE_INVOICE_MUTATIONS=true`:
Create an invoice for Rp 500,000 for "Website design deposit".
Buatkan invoice Rp 500.000 untuk "Deposit desain website".
Show me all unpaid invoices.
Tampilkan semua invoice yang belum dibayar.
With XENDIT_ENABLE_DISBURSEMENTS=true:
Prepare a Rp 1,000,000 payout to Ahmad at BCA, then wait for my confirmation.
Siapkan payout Rp 1.000.000 ke Ahmad di BCA, lalu tunggu konfirmasi saya.
List available payout channels in the Philippines.Environments
Xendit issues separate test and live API keys. Test keys operate against the Xendit sandbox, so no real funds move. Live keys (xnd_production_..., iluma_production_..., sk_live_...) operate against production.
Safety
This server can move real money through the Xendit API. Key safeguards:
Read-only by default. Invoice write tools are disabled unless
XENDIT_ENABLE_INVOICE_MUTATIONS=true. Money-moving tools are disabled unlessXENDIT_ENABLE_DISBURSEMENTS=true.Live keys are refused by default. Keys with the prefixes
xnd_production_,iluma_production_, orsk_live_are rejected at startup unlessXENDIT_ALLOW_LIVE=true. Always test with a development key (xnd_development_...) first.Fail-closed money movement. If you enable disbursements, the server refuses to start unless
XENDIT_MAX_DISBURSEMENT_AMOUNT,XENDIT_MAX_DAILY_AMOUNT,XENDIT_ALLOWED_ACCOUNTS, andXENDIT_APPROVAL_CODEare configured.Human-in-the-loop flow.
confirm_disbursementrequires both the staged token and a separateapprovalCode.Legacy one-shot payouts stay off by default.
create_disbursementis not even registered unlessXENDIT_ENABLE_LEGACY_ONE_SHOT_DISBURSEMENT=true.Hard caps and allowlists.
XENDIT_MAX_DISBURSEMENT_AMOUNT,XENDIT_MAX_DAILY_AMOUNT, andXENDIT_ALLOWED_ACCOUNTSlet you fail closed before a payout is sent.Idempotency. Payout calls use your
externalIdas theIdempotency-Key, so safe retries do not create duplicate transfers.Setup helpers are always available.
get_workspace_modeandguided_setupare exposed even in read-only mode so users can understand what is blocked and how to enable the next mode safely.Important limitation. No MCP server can be fully immune to prompt injection if you expose sensitive read or write tools to an untrusted model context. These defaults reduce risk, but you should still only connect this server to trusted agent workflows.
Even with these gates on, review any money-moving request before approving the tool call. Treat tool inputs derived from model output as untrusted.
Payout lifecycle
A confirmed payout does not always succeed or fail immediately. Xendit returns one of these statuses, and the terminal state may arrive seconds or minutes later:
ACCEPTED— accepted by Xendit, channel processing in progressREQUESTED— submitted to the destination channel, waiting for the channel's responseSUCCEEDED— funds deliveredFAILED— final failure (e.g.INVALID_DESTINATION,REJECTED_BY_CHANNEL,INSUFFICIENT_BALANCE)
Some destinations (observed in PHP sandbox testing) sit in REQUESTED for a while before transitioning to FAILED. Always re-fetch with get_disbursement before assuming the final state. Do not treat the initial response from confirm_disbursement as proof of delivery.
Sandbox verification scope
0.2.0 was verified against the Xendit sandbox using IDR and PHP development keys (May 25, 2026). Verified flows:
Invoice create / get / list / expire (IDR + PHP)
Payout channel discovery (PHP)
Guarded payout
prepare → confirm → get(IDR + PHP)Negative payout reasons
INVALID_DESTINATIONandREJECTED_BY_CHANNEL(PHP only — the IDR sandbox key hadbalance: 0, so negative IDR cases surfaced asINSUFFICIENT_BALANCErather than destination-specific failures)
Thailand, Vietnam, and Malaysia behavior is not yet verified against real sandbox keys. Behavior should be similar but cannot be claimed as tested.
Optional Claude Code hardening
Claude Code supports PreToolUse hooks that can force an extra approval dialog for sensitive tools such as confirm_disbursement. That gives you a second control outside the model context.
Example .claude/settings.json snippet:
{
"hooks": {
"PreToolUse": [
{
"matcher": "mcp__xendit__confirm_disbursement",
"hooks": [
{
"type": "command",
"command": "printf '%s' '{\"hookSpecificOutput\":{\"hookEventName\":\"PreToolUse\",\"permissionDecision\":\"ask\",\"permissionDecisionReason\":\"Human review required before confirm_disbursement.\"}}'"
}
]
}
]
}
}Disclaimer
This is an unofficial, community-built MCP server. Not affiliated with, endorsed by, or sponsored by Xendit. Xendit is a trademark of its respective owners. Use at your own risk. The author accepts no liability for funds lost through misuse, prompt injection, or bugs.
License
Available Tools
6 toolsget_balanceARead-only
Get your Xendit account balance. Returns available balance by account type (CASH, HOLDING, TAX).
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | Currency code (e.g., IDR, PHP). Defaults to your account's primary currency. | |
| accountType | No | Account type to check | CASH |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, and the description adds that the tool returns available balance by account type, which is consistent and adds value beyond annotations. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the purpose, with no extraneous information. Every word is justified.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequate for a simple read tool with full schema and annotations. However, the lack of output schema means the description could add return format details, but it is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description does not add new parameter-level details beyond what the schema already provides (e.g., default currency, account type enum).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Get' and resource 'Xendit account balance', and specifies return by account types (CASH, HOLDING, TAX). This distinguishes it from sibling tools like get_invoice or list_transactions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use versus alternatives or when not to use. The purpose is clear, but the description lacks explicit context for selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_invoiceARead-only
Get details of a specific Xendit invoice by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| invoiceId | Yes | Xendit invoice ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true. Description adds minimal behavioral context beyond stating it returns 'details'. No mention of error behavior or what details include.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with key information, no redundant words. Efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get-by-id operation with one required parameter and readOnlyHint, the description is complete. No output schema is expected, and sibling tools don't require additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description for invoiceId is clear ('Xendit invoice ID'). Description does not add further semantics beyond the schema. With 100% schema coverage, baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Get details of a specific Xendit invoice by ID' with a specific verb and resource. It distinguishes from siblings like list_invoices which lists multiple invoices.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or alternatives are mentioned. Usage is implied for retrieving a single invoice by ID, but no guidance is given for scenarios like missing invoice or comparison with list_invoices.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_workspace_modeWorkspace ModeARead-only
Explain the current Xendit MCP mode, what actions are enabled, and the safest next step to enable more access.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds significant behavioral context beyond the readOnlyHint annotation: it discloses that the tool explains the mode, actions enabled, and a recommended next step. This aligns with the annotation and provides useful transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that clearly states the tool's purpose and outputs. Every part is necessary and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters, is read-only, and no output schema, the description sufficiently covers what the tool does and what it returns. No additional context is needed for correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters, the description does not need to add parameter details. The baseline for 0 params is 4, and the description fulfills it by explaining what the tool does without needing parameter input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool explains the current Xendit MCP mode, actions enabled, and next step for more access. This is a specific verb+resource that distinguishes it from sibling tools like get_balance or get_invoice which deal with different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the usage context: when you need to understand the current mode and possible next steps. However, it does not explicitly state when not to use or mention alternatives, though given the unique purpose, this is a minor gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
guided_setupGuided SetupARead-only
Generate a safe Claude Code or Claude Desktop setup snippet for read-only, invoices, or guarded payouts mode. Uses a form when the client supports MCP elicitation.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Desired user-facing mode | |
| client | No | Target client | |
| allowLive | No | Set true only if you intend to use a live Xendit key | |
| serverName | No | Claude MCP server name, defaults to xendit | |
| maxDailyAmount | No | Only used for guarded-payouts mode | |
| allowedAccounts | No | Comma-separated CHANNEL_CODE:ACCOUNT_NUMBER entries for guarded-payouts mode | |
| maxDisbursementAmount | No | Only used for guarded-payouts mode |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so the agent knows this is a safe read operation. Description adds that the snippet is 'safe' and mentions form elicitation, but doesn't add substantive behavioral traits beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences that front-load the purpose. No redundant information; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 7 parameters (0 required), two enums, and no output schema, the description covers the core functionality. Could mention output format or more about allowLive context, but siblings are all queries so the role is clear.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (all parameters documented in schema). Description does not add additional meaning beyond schema, so baseline is 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it generates a safe setup snippet for three specific modes (read-only, invoices, guarded-payouts). Distinct from sibling tools which are all retrieval/query tools, so no ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides context about generating snippets and using forms when client supports MCP elicitation, but does not explicitly state when to use this tool versus alternatives or mention when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_invoicesARead-only
List invoices from your Xendit account with optional filters for status, date range, and pagination.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of invoices to return (1-100) | |
| status | No | Filter by invoice status | |
| currency | No | Filter by currency (IDR, PHP, etc.) | |
| createdAfter | No | Return invoices created after this ISO 8601 timestamp. Must be used with createdBefore. | |
| createdBefore | No | Return invoices created before this ISO 8601 timestamp. Must be used with createdAfter. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and description confirms read-only listing. Adds filter context but does not explain pagination mechanics or result set behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, 16 words, no redundant information. Front-loaded with verb and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers basic listing and filters. Missing details on pagination and return format, but for a simple tool with no output schema, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all 5 parameters. Description groups filters but adds no extra meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it lists invoices from Xendit account with optional filters, distinguishing it from sibling get_invoice (single invoice) and list_transactions (different resource).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Lacks explicit guidance on when to use this tool versus alternatives like get_invoice or list_transactions. No exclusions or when-not-to-use context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_transactionsARead-only
List transactions from your Xendit account. Includes payments received, payouts, refunds, transfers, and balance adjustments.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of transactions (1-50) | |
| types | No | Filter by transaction type | |
| status | No | Filter by transaction status | |
| currency | No | Filter by currency | |
| createdGte | No | Created on or after (ISO 8601) | |
| createdLte | No | Created on or before (ISO 8601) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only, which aligns with the description. However, the description adds no further behavioral details such as pagination, rate limits, or potential side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is front-loaded with the main action and includes essential details without unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the purpose but does not describe the return format or any output schema, leaving the agent uncertain about the response structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description adds no additional meaning beyond the schema. The description lists transaction types, but they are already in the enum.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List transactions' with the resource and includes a comprehensive list of transaction types, distinguishing it from siblings like get_balance and get_invoice.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
While the description implies usage for listing multiple transactions, it lacks explicit guidance on when to use this tool versus alternatives like get_invoice for specific transactions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
9 tool updates
v0.2.0- Removed
create_disbursement - Removed
create_invoice - Removed
expire_invoice - Removed
get_disbursement - Added
get_workspace_mode - Added
guided_setup - Removed
list_disbursement_banks - Changed
list_invoices2 fields changed- changed
Input schema / properties / createdAfter / descriptionPrevious value: -"Return invoices created after this date (ISO 8601, e.g., 2025-01-01T00:00:00Z)"New value: +"Return invoices created after this ISO 8601 timestamp. Must be used with createdBefore." - changed
Input schema / properties / createdBefore / descriptionPrevious value: -"Return invoices created before this date (ISO 8601)"New value: +"Return invoices created before this ISO 8601 timestamp. Must be used with createdAfter."
- Changed
list_transactions3 fields changed- changed
Input schema / properties / status / descriptionPrevious value: -"Filter by status"New value: +"Filter by transaction status" - changed
Input schema / properties / status / enumPrevious value: -[ - "SUCCESS", - "PENDING", - "FAILED", - "VOIDED" -]New value: +[ + "PENDING", + "SUCCESS", + "FAILED", + "VOIDED", + "REVERSED" +] - changed
Input schema / properties / types / enumPrevious value: -[ - "PAYMENT", - "DISBURSEMENT", - "REFUND", - "FEE", - "ADJUSTMENT" -]New value: +[ + "ADJUSTMENT_ADD", + "ADJUSTMENT_DEDUCT", + "BNPL_PARTNER_SETTLEMENT_CREDIT", + "BNPL_PARTNER_SETTLEMENT_DEBIT", + "CASHBACK_FEE", + "CASHBACK_VAT", + "CHARGEBACK", + "CONVERSION", + "DISBURSEMENT", + "FOREX_DEDUCTION", + "FOREX_DEPOSIT", + "IN_PERSON_PAYMENT", + "LOAN_REPAYMENT", + "OTHER", + "PAYMENT", + "REFUND", + "REMITTANCE", + "REMITTANCE_COLLECTION_PAYMENT", + "REMITTANCE_PAYOUT", + "RESERVES_HOLD", + "RESERVES_RELEASE", + "TOPUP", + "TRANSFER_IN", + "TRANSFER_OUT", + "WITHDRAWAL" +]
9 tool updates
v1.0.0- First observed
create_disbursement - First observed
create_invoice - First observed
expire_invoice - First observed
get_balance - First observed
get_disbursement - First observed
get_invoice - First observed
list_disbursement_banks - First observed
list_invoices - First observed
list_transactions
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: balance retrieval, invoice details, workspace mode explanation, setup snippet generation, and listing of invoices and transactions. No overlap between tools.
Most tools follow a verb_noun pattern using snake_case (e.g., get_balance, list_invoices). The only minor deviation is 'guided_setup' which is adjective_noun, but it remains clear and consistent with the overall style.
Six tools is well-scoped for a payment service MCP server covering essential read operations, account balance, and setup guidance. It's neither too few nor too many.
The tool surface is limited to read and setup operations, missing write capabilities like create/update/delete invoices or payouts. This creates notable gaps for a payment API, restricting agents to passive data retrieval.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Modern Treasury — payment orders, transactions, counterparties and ledgers.
MCP server for Codat — companies, connections, invoices, bills and financial statements.
MCP server for Quaderno — tax-rate calculation, invoices, contacts, products, receipts & expenses.
MCP Server for agents to onboard, pay, and provision services autonomously with InFlow
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables interaction with Velo Payments APIs for global payment operations, automatically generated using AG2's MCP builder from the Velo Payments OpenAPI specification.-
- AlicenseAqualityBmaintenanceExtract YouTube transcripts for AI agents, RAG pipelines, and LLM workflows. Supports any YouTube URL. Returns clean text or timestamped segments. No API keys required.14MIT
- AlicenseAqualityAmaintenanceMCP server for Rakuten APIs. Search products, books, hotels, and rankings across Japan's largest e-commerce platform.28905MIT
- FlicenseNot gradedqualityDmaintenanceMCP server for Paper.id Indonesian invoicing and accounting platform, providing 31 tools for partner and invoice management, QRIS payments, and reporting with automatic token refresh.-