diff --git a/packages/atxp-common/src/paymentRequiredError.ts b/packages/atxp-common/src/paymentRequiredError.ts index ebb7b973..61ec0d68 100644 --- a/packages/atxp-common/src/paymentRequiredError.ts +++ b/packages/atxp-common/src/paymentRequiredError.ts @@ -14,5 +14,5 @@ export function paymentRequiredError(server: AuthorizationServerUrl, paymentRequ const paymentRequestUrl = `${server}/payment-request/${paymentRequestId}`; const data = { paymentRequestId, paymentRequestUrl, chargeAmount }; const amountText = chargeAmount ? ` You will be charged ${chargeAmount.toString()}.` : ''; - return new McpError(PAYMENT_REQUIRED_ERROR_CODE, `${PAYMENT_REQUIRED_PREAMBLE}${amountText} Please pay at: ${paymentRequestUrl}`, data); + return new McpError(PAYMENT_REQUIRED_ERROR_CODE, `${PAYMENT_REQUIRED_PREAMBLE}${amountText} Please pay at: ${paymentRequestUrl} and then try again.`, data); } \ No newline at end of file