You're viewing a demo portfolio

Join the waitlist
PRSM
This tool is no longer present in the server's latest manifest. Showing the last observed version (server version 0.1.0).

create_payment_link

Inactive

Tool of Hong Kong Payments (Stripe — Alipay / WeChat Pay)

declared in 0.1.0

Create a payment link in HKD for Hong Kong via Stripe (Checkout Sessions). Buyer pays with cards, Apple Pay, Alipay, WeChat Pay — whatever is enabled on the Stripe account. Returns a hosted checkout URL the buyer opens to pay — payment completes automatically, no confirm step. Bring your own credentials via HTTP header (x-stripe-secret-key; free test credentials from dashboard.stripe.com never move real money). Money always flows buyer→Stripe→merchant; this service never touches funds. Optional: issue_invoice=true auto-creates a VAT-ready invoice (PDF + hosted page, emailed to the buyer) after payment; collect_tax_id=true collects the buyer's business tax ID (e.g. EU VAT number) at checkout and puts it on the invoice.

Parameters schema

{
  "type": "object",
  "required": [
    "amount_hkd",
    "description"
  ],
  "properties": {
    "amount_hkd": {
      "type": "number",
      "maximum": 1000000,
      "minimum": 4,
      "description": "Amount in HKD (decimals allowed), e.g. 40. Minimum 4."
    },
    "description": {
      "type": "string",
      "description": "What this payment is for (shown to the buyer, ≤200 chars)"
    },
    "success_url": {
      "type": "string",
      "description": "Optional https URL to send the buyer to after payment."
    },
    "issue_invoice": {
      "type": "boolean",
      "description": "true = Stripe automatically creates and emails a post-payment invoice (PDF + hosted invoice page). Ideal for B2B / VAT bookkeeping. Note: Stripe charges a small Invoicing fee per invoice issued."
    },
    "collect_tax_id": {
      "type": "boolean",
      "description": "true = ask the buyer for their business tax ID (e.g. EU VAT number) on the checkout page; it appears on the invoice. Combine with issue_invoice for a VAT-compliant receipt."
    },
    "customer_email": {
      "type": "string",
      "description": "Optional buyer email."
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

Hong Kong Payments (Stripe — Alipay / WeChat Pay)

https://github.com/junter1989k-ai/hong-kong-payments-mcp

2/7 registries
View full server →