verify_payment
ActiveTool of clawshow
Check the status of a payment by its payment ID. Supports Stripe, Stancer, and SumUp providers. Input: provider, payment_id. Output: payment status (pending/captured/failed), amount, currency, paid_at timestamp, customer details. Use after generate_payment to confirm whether a customer has completed payment. Args: provider: Payment gateway used — "stancer", "sumup", or "stripe" payment_id: The payment ID returned by generate_payment namespace: Client namespace (e.g. "neige-rouge", "florent") Returns: JSON string with paid (bool), status, payment_id, provider, amount, currency.
Parameters schema
{
"type": "object",
"title": "verify_paymentArguments",
"required": [
"provider",
"payment_id",
"namespace"
],
"properties": {
"provider": {
"type": "string",
"title": "Provider"
},
"namespace": {
"type": "string",
"title": "Namespace"
},
"payment_id": {
"type": "string",
"title": "Payment Id"
}
}
}Parent server
clawshow
https://github.com/jason2016/clawshow-mcp-server
2/7 registries