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 Ireland Payments (Stripe — cards / Apple Pay)

declared in 0.1.0

Create a payment link in EUR for Ireland via Stripe (Checkout Sessions). Buyer pays with cards, Apple Pay / Google 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_eur",
    "description"
  ],
  "properties": {
    "amount_eur": {
      "type": "number",
      "maximum": 1000000,
      "minimum": 0.5,
      "description": "Amount in EUR (decimals allowed), e.g. 5.0. Minimum 0.5."
    },
    "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

Ireland Payments (Stripe — cards / Apple Pay)

https://github.com/junter1989k-ai/ireland-payments-mcp

2/7 registries
View full server →