Skip to main content
Glama
theYahia

xendit-mcp

by theYahia

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_invoice

Create a payment invoice

get_invoice

Get invoice details by ID

list_invoices

List invoices with filters

create_disbursement

Create a bank payout

get_disbursement

Get disbursement details

create_va

Create a virtual account

get_va_payment

Get VA payment details

create_qr

Create a QRIS QR code

get_balance

Get account balance

create_ewallet_charge

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

XENDIT_SECRET_KEY

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 tools
create_disbursementB

Create a disbursement (payout) to a bank account.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesAmount to disburse
bank_codeYesDestination bank code (BCA, MANDIRI, BNI, etc.)
descriptionNoDisbursement description
external_idYesUnique disbursement ID
account_numberYesBank account number
account_holder_nameYesAccount holder name

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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).

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesCharge amount
currencyNoCurrency codeIDR
channel_codeYesE-wallet channel: ID_OVO, ID_DANA, ID_LINKAJA, ID_SHOPEEPAY, PH_GCASH, PH_GRABPAY
reference_idYesUnique reference ID
mobile_numberNoCustomer mobile number (required for OVO)
success_redirect_urlNoRedirect URL after payment success

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesInvoice amount
currencyNoCurrency code (IDR, PHP, USD)IDR
descriptionNoInvoice description
external_idYesUnique invoice ID from your system
payer_emailNoCustomer email

TDQS

C2.8/5.0
Behavior2/5

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.

Conciseness3/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeYesQR code type
amountNoAmount (required for DYNAMIC)
external_idYesUnique QR code ID
callback_urlNoWebhook URL for payment notification

TDQS

C2.7/5.0
Behavior2/5

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.

Conciseness2/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesCustomer name for the virtual account
bank_codeYesBank code: BCA, BNI, MANDIRI, BRI, PERMATA
is_closedNoWhether the VA is closed (fixed amount)
external_idYesUnique virtual account ID
expected_amountNoExpected payment amount

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
account_typeNoAccount typeCASH

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
disbursement_idYesXendit disbursement ID

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
invoice_idYesXendit invoice ID

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
payment_idYesVirtual account payment ID

TDQS

C2.5/5.0
Behavior2/5

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.

Conciseness3/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose3/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax invoices to return (default 10)
statusesNoComma-separated statuses: PENDING,PAID,EXPIRED

TDQS

B3.3/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

  1. 10 tool updatesv1.0.0
    • First observedcreate_disbursement
    • First observedcreate_ewallet_charge
    • First observedcreate_invoice
    • First observedcreate_qr
    • First observedcreate_va
    • First observedget_balance
    • First observedget_disbursement
    • First observedget_invoice
    • First observedget_va_payment
    • First observedlist_invoices

TDQS

B3.4/5.0

Scored across 10 tools

Disambiguation5/5

Each tool targets a distinct resource (invoices, disbursements, virtual accounts, QR codes, balance, e-wallet) with clear actions. No overlapping functions.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (get_, create_, list_) with resource names clearly indicating purpose.

Tool Count5/5

10 tools cover the major payment operations without being overly granular or sparse, fitting the scope well.

Completeness4/5

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

ActivityInactive
ResponsivenessSyncing

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    MCP 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.
    -
  • A
    license
    Not graded
    quality
    F
    maintenance
    MCP 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.
    35
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    MCP server for VNPay payment gateway (Vietnam). Supports payment URL generation, transaction queries, refunds, tokenized payments, and IPN verification with HMAC-SHA512 signing.
    8
    10
    MIT