xno-skills 0.7.2 → 0.8.0
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 +12 -0
- package/dist/cjs/mcp.js +658 -5
- package/dist/cjs/mcp.js.map +1 -1
- package/dist/cjs/version.d.ts +2 -2
- package/dist/cjs/version.js +1 -1
- package/dist/esm/.xno-mcp/config.json +2 -1
- package/dist/esm/.xno-mcp/requests.json +52 -0
- package/dist/esm/.xno-mcp/wallets.json +9 -2
- package/dist/esm/mcp.js +658 -5
- package/dist/esm/mcp.js.map +1 -1
- package/dist/esm/version.d.ts +2 -2
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@ Available skills:
|
|
|
23
23
|
- `validate-address`: Address format and checksum verification guide.
|
|
24
24
|
- `check-balance`: Check balance/pending via Nano node RPC.
|
|
25
25
|
- `mcp-wallet`: Use `xno-mcp` as a private “wallet” custody blackbox (addresses only; no seed leakage).
|
|
26
|
+
- `request-payment`: Request XNO from operator (payment request workflow with tracking, QR, receive, report).
|
|
27
|
+
- `return-funds`: Return XNO to sender (source attribution, ambiguity guards, safe refund).
|
|
26
28
|
|
|
27
29
|
## MCP Server
|
|
28
30
|
|
|
@@ -46,6 +48,11 @@ Exposed tools:
|
|
|
46
48
|
- `wallet_balance` / `wallet_probe_balances`: Balance/pending checks for wallet accounts via RPC.
|
|
47
49
|
- `wallet_receive` / `wallet_send`: Receive pending blocks and send funds (sign + work + `process` via RPC).
|
|
48
50
|
- `config_get` / `config_set`: Store defaults (RPC URL, work URL, timeouts, default representative; optional wallet persistence).
|
|
51
|
+
- `wallet_set_allowance` / `wallet_get_allowance`: Spending limits per wallet (per-tx cap, window budget, destination whitelist).
|
|
52
|
+
- `wallet_history`: Persistent transaction log (sends, receives, linked payment requests).
|
|
53
|
+
- `payment_request_create` / `payment_request_status` / `payment_request_receive` / `payment_request_list`: Payment request lifecycle.
|
|
54
|
+
- `payment_request_refund`: Safe refund with source attribution and ambiguity guards.
|
|
55
|
+
- `generate_qr`: Generate QR codes for Nano addresses/payment URIs.
|
|
49
56
|
- `generate_wallet`: Generate a wallet (default: BIP39 derivation).
|
|
50
57
|
- `derive_address`: Derive an address (supports `bip39` + `legacy`, with `auto` preference).
|
|
51
58
|
- `probe_mnemonic`: Probe both derivations via RPC (helps resolve 24-word ambiguity).
|
|
@@ -614,6 +621,11 @@ npm run build:cjs
|
|
|
614
621
|
|
|
615
622
|
See `RELEASING.md`.
|
|
616
623
|
|
|
624
|
+
## Similar Projects
|
|
625
|
+
|
|
626
|
+
- [kilkelly/nano-currency-mcp-server](https://github.com/kilkelly/nano-currency-mcp-server) — MCP server for Nano with a simple per-transaction send limit
|
|
627
|
+
- [strawberry-labs/berrypay-cli](https://github.com/strawberry-labs/berrypay-cli) — Nano wallet CLI for AI agents with payment processing and auto-sweep
|
|
628
|
+
|
|
617
629
|
## License
|
|
618
630
|
|
|
619
631
|
MIT
|