xendit-mcp
Provides tools for interacting with Xendit payment gateway, supporting invoices, disbursements, virtual accounts, QR codes, e-wallets, and balance inquiries.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@xendit-mcpCreate an invoice for 150,000 IDR"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
xendit-mcp
MCP server for Xendit payment gateway (Indonesia/Philippines). Supports invoices, disbursements, virtual accounts, QR codes, e-wallets, and balance inquiries.
Tools (10)
Tool | Description |
| Create a payment invoice |
| Get invoice details by ID |
| List invoices with filters |
| Create a bank payout |
| Get disbursement details |
| Create a virtual account |
| Get VA payment details |
| Create a QRIS QR code |
| Get account balance |
| Create an e-wallet charge |
Related MCP server: paper-invoice-mcp
Quick Start
{
"mcpServers": {
"xendit": {
"command": "npx",
"args": ["-y", "@theyahia/xendit-mcp"],
"env": {
"XENDIT_SECRET_KEY": "<YOUR_SECRET_KEY>"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Secret API key from Xendit dashboard |
Demo Prompts
"Create an invoice for 100,000 IDR"
"Disburse 50,000 IDR to BCA account 1234567890"
"Create a QRIS QR code for 25,000 IDR"
"Charge 30,000 IDR to OVO wallet +628123456789"
License
MIT
Available Tools
10 toolscreate_disbursementB
Create a disbursement (payout) to a bank account.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Amount to disburse | |
| bank_code | Yes | Destination bank code (BCA, MANDIRI, BNI, etc.) | |
| description | No | Disbursement description | |
| external_id | Yes | Unique disbursement ID | |
| account_number | Yes | Bank account number | |
| account_holder_name | Yes | Account holder name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must cover behavioral traits. It only states the creation action but omits side effects, authorization requirements, idempotency, error conditions, or whether the operation is reversible.
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 sentence with no redundancy. It efficiently communicates the core purpose 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?
Given 6 parameters and no output schema or annotations, the description lacks completeness. It does not mention return values, error handling, prerequisites, or what happens on success/failure.
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%, with each parameter having a clear description (e.g., amount, bank_code). The tool description adds no extra meaning beyond the schema, so the baseline score 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?
The description clearly states the action 'Create' and the resource 'disbursement (payout)', with the target 'to a bank account'. This distinguishes it from sibling tools like get_invoice, create_va, etc., 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 does not provide any guidance on when to use this tool versus alternatives, such as when to create a disbursement vs. using other payment methods. No exclusions or context are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_ewallet_chargeB
Create an e-wallet charge (OVO, DANA, GoPay, GCash).
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Charge amount | |
| currency | No | Currency code | IDR |
| channel_code | Yes | E-wallet channel: ID_OVO, ID_DANA, ID_LINKAJA, ID_SHOPEEPAY, PH_GCASH, PH_GRABPAY | |
| reference_id | Yes | Unique reference ID | |
| mobile_number | No | Customer mobile number (required for OVO) | |
| success_redirect_url | No | Redirect URL after payment success |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations and description provides no behavioral info beyond creation. Does not mention idempotency, side effects, permissions, or response 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, 8 words, front-loaded with action and resource. No 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?
Given 6 parameters, no output schema, and no annotations, description is too sparse. Lacks info on required prerequisites (e.g., OVO mobile number), return values, or failure handling.
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 3. Description adds minimal value by listing example channels, but schema already lists them. No additional semantic hints.
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 'Create' and resource 'e-wallet charge', with examples of supported wallets. It distinguishes from sibling tools like create_invoice or create_va by specifying e-wallet focus.
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 mentioned. Usage is implied by the examples, but no guidance on when not to use or compared to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_invoiceC
Create a payment invoice via Xendit.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Invoice amount | |
| currency | No | Currency code (IDR, PHP, USD) | IDR |
| description | No | Invoice description | |
| external_id | Yes | Unique invoice ID from your system | |
| payer_email | No | Customer email |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It only says 'Create a payment invoice' without any disclosure of side effects, idempotency, authentication requirements, or what happens upon success/failure. The description is insufficient for a mutation tool.
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 only one sentence, which is concise but arguably too brief. It lacks structure and fails to front-load key information. While it is not verbose, it under-delivers on content for a 5-parameter tool.
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 no output schema and moderate parameter count (5), the description is incomplete. It does not explain return values, error states, or any post-creation behavior. The tool needs more context to be effectively used.
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 each parameter having a description. The tool description adds no additional meaning beyond the schema, meeting the baseline for complete schema coverage.
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 states 'Create a payment invoice via Xendit.' It clearly identifies the action (create) and the resource (payment invoice). It distinguishes from sibling tools like get_invoice and list_invoices, but lacks specificity about what a 'payment invoice' entails in Xendit.
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 guidance is provided on when to use this tool versus alternatives. There is no mention of conditions, prerequisites, or when not to use it. The description does not differentiate use cases from siblings like create_disbursement or create_ewallet_charge.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_qrC
Create a QRIS QR code for payment.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | QR code type | |
| amount | No | Amount (required for DYNAMIC) | |
| external_id | Yes | Unique QR code ID | |
| callback_url | No | Webhook URL for payment notification |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description should disclose behavioral traits. It only states creation, missing side effects, conditional requirements (amount for DYNAMIC), or return value details.
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?
One sentence is concise but under-specified for a tool with 4 parameters and conditional logic. More detail is needed without being verbose.
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 no output schema and no annotations, the description is incomplete. It lacks context on what the tool returns (e.g., QR image data), prerequisites, or payment flow integration.
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 adds no meaning beyond the schema; it does not explain the type enum or conditional requirement for amount.
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 the action ('create') and resource ('QRIS QR code for payment'), but does not differentiate from sibling tools like create_invoice or create_ewallet_charge.
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 guidance on when to use this tool vs alternatives (e.g., when to choose dynamic vs static QR, or QR vs invoice). No context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_vaC
Create a virtual account for payment collection.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Customer name for the virtual account | |
| bank_code | Yes | Bank code: BCA, BNI, MANDIRI, BRI, PERMATA | |
| is_closed | No | Whether the VA is closed (fixed amount) | |
| external_id | Yes | Unique virtual account ID | |
| expected_amount | No | Expected payment amount |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosure. It only states 'Create' but does not explain side effects (e.g., idempotency, data persistence), authorization requirements, rate limits, or error behaviors.
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 extremely concise at one sentence, effectively front-loading the core purpose. However, it could include brief behavioral notes without sacrificing brevity.
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 no output schema and 5 parameters, the description is too brief. It does not cover return value format, error scenarios, or usage context, leaving significant gaps for an AI agent.
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%, so baseline is 3. The description adds no extra meaning beyond the schema; it does not explain how parameters like is_closed or expected_amount affect the virtual account's behavior.
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 'Create a virtual account for payment collection' clearly states the action (create) and resource (virtual account) with purpose. However, it does not differentiate from sibling tools like get_va_payment or create_qr, which serve different purposes.
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 guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, when-not-to-use, or sibling tool distinctions, leaving the agent without decision support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_balanceC
Get account balance.
| Name | Required | Description | Default |
|---|---|---|---|
| account_type | No | Account type | CASH |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. 'Get' implies a read-only operation, but no explicit disclosure of side effects, authentication, rate limits, or any other behavioral traits.
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?
Extremely concise at two words, earning its place with no wasted text. However, it could include more detail without losing conciseness.
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's simplicity, the description lacks necessary context about what account types are and what the balance represents. Sibling tools suggest a financial context, but the description does not leverage that.
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% (one parameter with description 'Account type'). The tool description adds no meaning beyond the schema, so baseline score 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?
The description clearly states the action (get) and resource (account balance), so the purpose is clear. However, it doesn't distinguish from sibling tools, which are about different resources (invoices, disbursements, etc.), so no confusion but lacks differentiation.
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 guidance on when to use this tool vs alternatives. It does not mention any context, prerequisites, or conditions under which to select this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_disbursementB
Get disbursement details by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| disbursement_id | Yes | Xendit disbursement ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, but it does not disclose any behavioral traits such as idempotency, rate limits, authentication needs, or error behavior. It merely states the action without adding depth.
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 gets straight to the point with no fluff. It is front-loaded and 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?
For a simple retrieval tool with one parameter and no output schema, the description is fairly complete. It could mention the return format, but the purpose is clear and the tool is trivial enough that it may not be necessary.
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% as the only parameter 'disbursement_id' is described in the schema as 'Xendit disbursement ID'. The description adds no extra meaning beyond this, so baseline 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?
The description clearly states the verb 'get', the resource 'disbursement details', and the identifier 'by ID'. It effectively distinguishes from sibling tools like 'create_disbursement' which creates rather than reads.
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 guidance is provided on when to use this tool versus alternatives like 'get_invoice' or 'create_disbursement'. There are no exclusion criteria or context for appropriate use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_invoiceB
Get invoice details by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| invoice_id | Yes | Xendit invoice ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description only says 'Get invoice details' without stating behavioral traits such as read-only nature, authentication requirements, or side effects. It adds minimal transparency beyond the operation itself.
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?
Extremely concise single sentence that effectively communicates the tool's purpose. No unnecessary words or information.
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 tool is simple with one parameter and no output schema or annotations. The description is minimal but adequate for a straightforward retrieval operation. However, it could benefit from mentioning what is returned or any prerequisites.
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%, and the description for invoice_id ('Xendit invoice ID') adds a slight clarification over the schema, but does not provide substantial additional meaning. Baseline score 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 verb 'Get' and resource 'invoice details'. It distinguishes from siblings like create_invoice and list_invoices. However, it doesn't specify what 'details' includes, leaving some 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?
No explicit guidance on when to use this tool versus alternatives like list_invoices or other retrieval tools. The context is only implicit from the tool name and parameter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_va_paymentC
Get virtual account payment details.
| Name | Required | Description | Default |
|---|---|---|---|
| payment_id | Yes | Virtual account payment ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description lacks behavioral details such as side effects, authentication needs, or error handling. For a read-like operation, it does not explicitly state idempotency or safety.
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 very concise at one sentence, but it sacrifices necessary detail. It is front-loaded with the purpose but missing context that would aid tool selection and invocation.
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 absence of an output schema, the description should provide some indication of return values or behavior. It is too sparse for a tool with one required parameter and no additional 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% for the single parameter 'payment_id', which is described adequately. The description adds no extra context beyond the schema, so a baseline score 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?
The description states the action 'Get' and resource 'virtual account payment details', which is clear but minimal. It does not differentiate from sibling tools like 'get_invoice' or 'get_disbursement', making it harder for an agent to choose the correct tool.
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 guidance is provided on when to use this tool versus alternatives. There are no instructions about prerequisites or when not to use it, which is essential for correct selection among 9 sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_invoicesB
List invoices with optional filters.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max invoices to return (default 10) | |
| statuses | No | Comma-separated statuses: PENDING,PAID,EXPIRED |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose any behavioral traits beyond what the schema implies (e.g., no mention of pagination, authentication, or side effects). Minimal value added.
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, no unnecessary words, efficiently conveys the core purpose.
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 no output schema, the description could explain the return format or pagination. It's adequate but lacks completeness for a list operation.
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 meaning beyond the schema; 'optional filters' is generic.
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 the action (list) and the resource (invoices) with optional filters, distinguishing it from siblings like get_invoice (single) and create_invoice (creation).
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 guidance on when to use this tool versus alternatives; no context about prerequisites or exclusions. The description only mentions optional filters without any usage scenario.
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.
10 tool updates
v1.0.0- First observed
create_disbursement - First observed
create_ewallet_charge - First observed
create_invoice - First observed
create_qr - First observed
create_va - First observed
get_balance - First observed
get_disbursement - First observed
get_invoice - First observed
get_va_payment - First observed
list_invoices
TDQS
Scored across 10 tools
Each tool targets a distinct resource (invoices, disbursements, virtual accounts, QR codes, balance, e-wallet) with clear actions. No overlapping functions.
All tools follow a consistent verb_noun snake_case pattern (get_, create_, list_) with resource names clearly indicating purpose.
10 tools cover the major payment operations without being overly granular or sparse, fitting the scope well.
Covers core payment flows (invoice, disbursement, VA, QR, e-wallet, balance) but lacks list operations for disbursements and VAs, and no update/delete endpoints.
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
Billing proxy for MCP servers. Adds Stripe and x402 crypto payments without writing billing code.
MCP server for Sendbird — chat users, channels, members, and messages from your AI client.
MCP server for Modern Treasury — payment orders, transactions, counterparties and ledgers.
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for Xendit payment APIs. Invoices, disbursements, balance checks, and bank transfers across Southeast Asia.6444MIT
- 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.-
- AlicenseNot gradedqualityFmaintenanceMCP server for T-Kassa (T-Bank/Tinkoff) payment API. Provides 16 tools for payments, refunds, recurring charges, customer management, saved cards, SBP, receipts, and T-Invest portfolio.35MIT
- AlicenseBqualityDmaintenanceMCP server for VNPay payment gateway (Vietnam). Supports payment URL generation, transaction queries, refunds, tokenized payments, and IPN verification with HMAC-SHA512 signing.810MIT