@curless/agentbank-merchant-mcp 0.0.30 → 0.0.31

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.
Files changed (2) hide show
  1. package/README.md +11 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,10 +14,20 @@ table fallback for hosts without the card.
14
14
 
15
15
  ## Tools
16
16
 
17
- - **`list_orders`** — this merchant's orders (what agents have paid), newest first.
17
+ Orders:
18
+ - **`list_orders`** — this merchant's orders (what agents have paid), newest first; filter by status / protocol / currency / date.
19
+ - **`get_summary`** — order roll-up: count + gross by currency + breakdowns by protocol/status.
18
20
  - **`get_balance`** — the live Curless wallet balance per currency (available / frozen).
19
21
  - **`get_order`** — one order in full: line items + the card it was paid with.
20
22
 
23
+ Refunds:
24
+ - **`list_refund_requests`** — buyers' refund requests on your orders (the queue; filter by status).
25
+ - **`approve_refund`** — approve a request → forwarded to Curless (the order refunds once Curless confirms).
26
+ - **`reject_refund`** — decline a request (optional note).
27
+ - **`refund_order`** — refund one of your orders directly (no buyer request needed).
28
+
29
+ All eight render into the same MCP Apps card (orders list / detail / summary / wallet / refund queue) with a markdown fallback for hosts without the card.
30
+
21
31
  ## Use (Claude Desktop `claude_desktop_config.json`)
22
32
 
23
33
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curless/agentbank-merchant-mcp",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "description": "Merchant-side MCP server for agentbank — read your orders + live Curless wallet balance from Claude, authenticated by your Curless API key via env (no OAuth).",
5
5
  "license": "MIT",
6
6
  "type": "module",