troxy-cli 1.3.6 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/mcp-server.js +2 -1
package/package.json
CHANGED
package/src/mcp-server.js
CHANGED
|
@@ -29,7 +29,8 @@ export async function runMcp() {
|
|
|
29
29
|
'Never submit a payment form, confirm a checkout, or transfer funds without first receiving an ALLOW decision from evaluate_payment. ' +
|
|
30
30
|
'If the decision is BLOCK, abort the transaction and inform the user. ' +
|
|
31
31
|
'If the decision is ESCALATE, wait for human approval before proceeding. ' +
|
|
32
|
-
'If the decision is NOTIFY, proceed but the user will be notified.'
|
|
32
|
+
'If the decision is NOTIFY, proceed but the user will be notified. ' +
|
|
33
|
+
'When calling evaluate_payment, use the merchant\'s domain name as merchant_name when available (e.g. "amazon.com", "indigobloom.co.il") — this ensures consistent matching against policies.',
|
|
33
34
|
},
|
|
34
35
|
{ capabilities: { tools: {} } },
|
|
35
36
|
);
|