@openclawcash/mcp-server 0.1.5 → 0.1.6
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/README.md +46 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# OpenClawCash MCP Server
|
|
2
2
|
|
|
3
|
-
This folder contains the public OpenClawCash stdio MCP server package
|
|
3
|
+
This folder contains the public OpenClawCash stdio MCP server package, which exposes OpenClawCash agent operations as MCP tools.
|
|
4
4
|
|
|
5
5
|
It is a thin adapter over the existing OpenClawCash agent API at `https://openclawcash.com/api/agent/*`.
|
|
6
6
|
|
|
@@ -8,18 +8,60 @@ Canonical docs page: `https://openclawcash.com/mcp`
|
|
|
8
8
|
|
|
9
9
|
## What It Exposes
|
|
10
10
|
|
|
11
|
+
Wallet and profile tools:
|
|
12
|
+
|
|
11
13
|
- `wallets_list`
|
|
12
14
|
- `wallet_get`
|
|
13
15
|
- `transactions_list`
|
|
14
16
|
- `balances_get`
|
|
15
17
|
- `supported_tokens_list`
|
|
18
|
+
- `user_tag_get`
|
|
19
|
+
- `user_tag_set`
|
|
20
|
+
- `wallet_create`
|
|
21
|
+
- `wallet_import`
|
|
22
|
+
|
|
23
|
+
Trading and transfer tools:
|
|
24
|
+
|
|
16
25
|
- `transfer_send`
|
|
17
26
|
- `swap_quote`
|
|
18
27
|
- `swap_execute`
|
|
19
|
-
- `checkout_fund` (quick-pay first, swap fallback)
|
|
20
28
|
- `approve_token`
|
|
21
|
-
|
|
22
|
-
|
|
29
|
+
|
|
30
|
+
Get Paid checkout tools:
|
|
31
|
+
|
|
32
|
+
- `checkout_payreq_create`
|
|
33
|
+
- `checkout_payreq_get`
|
|
34
|
+
- `checkout_escrow_get`
|
|
35
|
+
- `checkout_funding_confirm`
|
|
36
|
+
- `checkout_accept`
|
|
37
|
+
- `checkout_proof_submit`
|
|
38
|
+
- `checkout_dispute_open`
|
|
39
|
+
- `checkout_quick_pay`
|
|
40
|
+
- `checkout_swap_and_pay`
|
|
41
|
+
- `checkout_fund` (quick-pay first, swap fallback)
|
|
42
|
+
- `checkout_release`
|
|
43
|
+
- `checkout_refund`
|
|
44
|
+
- `checkout_cancel`
|
|
45
|
+
- `checkout_webhooks_list`
|
|
46
|
+
- `checkout_webhook_create`
|
|
47
|
+
- `checkout_webhook_update`
|
|
48
|
+
- `checkout_webhook_delete`
|
|
49
|
+
|
|
50
|
+
Polymarket tools:
|
|
51
|
+
|
|
52
|
+
- `polymarket_market_resolve`
|
|
53
|
+
- `polymarket_order_limit`
|
|
54
|
+
- `polymarket_order_market`
|
|
55
|
+
- `polymarket_account`
|
|
56
|
+
- `polymarket_orders`
|
|
57
|
+
- `polymarket_cancel_order`
|
|
58
|
+
- `polymarket_clear_integration`
|
|
59
|
+
- `polymarket_activity`
|
|
60
|
+
- `polymarket_positions`
|
|
61
|
+
|
|
62
|
+
Utility tool:
|
|
63
|
+
|
|
64
|
+
- `openclawcash-self-test`
|
|
23
65
|
|
|
24
66
|
It also exposes two lightweight MCP resources:
|
|
25
67
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclawcash/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenClawCash MCP server for managed agent wallets, balances, transfers, swaps, and
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "OpenClawCash MCP server for managed agent wallets, balances, transfers, swaps, approvals, Get Paid checkout escrow flows, and Polymarket market resolution/order tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Proprietary",
|
|
7
7
|
"homepage": "https://openclawcash.com/mcp",
|