You're viewing a demo portfolio

Join the waitlist
PRSM

create_payment_link

Active

Tool of PayRam Helper MCP Server

declared in 1.1.0

Creates a PayRam checkout (payment) link and returns the hosted URL plus a reference_id. Authenticates with the Merchant API-Key (set PAYRAM_API_KEY). This WRITES — it creates a real payment request. The customer chooses the chain/currency on the hosted checkout. Poll status later with lookup_payment (or GET /api/v1/payment/reference/{reference_id}).

Parameters schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "amountInUSD",
    "customerID",
    "customerEmail"
  ],
  "properties": {
    "customerID": {
      "type": "string",
      "minLength": 1,
      "description": "Your internal customer identifier (sent as customerID, required)"
    },
    "amountInUSD": {
      "type": "number",
      "description": "Payment amount in USD (must be > 0)",
      "exclusiveMinimum": 0
    },
    "customerEmail": {
      "type": "string",
      "format": "email",
      "pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
      "description": "Customer email (required — the backend validates it as a non-empty email)"
    }
  },
  "additionalProperties": false
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

PayRam Helper MCP Server

https://github.com/PayRam/payram-helper-mcp-server

1/7 registries
View full server →
create_payment_link — PayRam Helper MCP Server — PRSM MCP