crossfin-mcp 1.8.2 → 1.8.3
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 +1 -1
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ crossfin-mcp
|
|
|
39
39
|
|
|
40
40
|
### Routing engine
|
|
41
41
|
|
|
42
|
-
- `find_optimal_route` — find optimal crypto transfer route across
|
|
42
|
+
- `find_optimal_route` — find optimal crypto transfer route across 5 exchanges (paid via x402, requires `EVM_PRIVATE_KEY`)
|
|
43
43
|
- `list_exchange_fees` — compare trading and withdrawal fees across exchanges
|
|
44
44
|
- `compare_exchange_prices` — compare live prices for a coin across Korean exchanges
|
|
45
45
|
|
package/dist/index.js
CHANGED
|
@@ -403,7 +403,7 @@ server.registerTool('find_optimal_route', {
|
|
|
403
403
|
title: 'Find optimal route',
|
|
404
404
|
description: 'Find the cheapest/fastest path to move money across Asian exchanges. ' +
|
|
405
405
|
'Example: KRW on Bithumb → USDC on Binance. ' +
|
|
406
|
-
'Supports
|
|
406
|
+
'Supports 5 exchanges (Bithumb, Upbit, Coinone, GoPax, Binance) and 12 bridge coins. ' +
|
|
407
407
|
'Paid tool: calls /api/premium/route/find ($0.10) via x402 (requires EVM_PRIVATE_KEY).',
|
|
408
408
|
inputSchema: z.object({
|
|
409
409
|
from: z
|
|
@@ -467,7 +467,7 @@ server.registerTool('find_optimal_route', {
|
|
|
467
467
|
server.registerTool('list_exchange_fees', {
|
|
468
468
|
title: 'List exchange fees',
|
|
469
469
|
description: 'Show trading fees, withdrawal fees, and transfer times for all supported exchanges ' +
|
|
470
|
-
'(Bithumb, Upbit, Coinone,
|
|
470
|
+
'(Bithumb, Upbit, Coinone, GoPax, Binance)',
|
|
471
471
|
inputSchema: z.object({}),
|
|
472
472
|
}, async (_params) => {
|
|
473
473
|
try {
|
|
@@ -483,8 +483,8 @@ server.registerTool('list_exchange_fees', {
|
|
|
483
483
|
});
|
|
484
484
|
server.registerTool('compare_exchange_prices', {
|
|
485
485
|
title: 'Compare exchange prices',
|
|
486
|
-
description: 'Compare
|
|
487
|
-
'Shows
|
|
486
|
+
description: 'Compare Bithumb KRW prices vs global USD prices (Binance) for tracked coins. ' +
|
|
487
|
+
'Shows transfer-time estimates and which coins are bridge-capable.',
|
|
488
488
|
inputSchema: z.object({
|
|
489
489
|
coin: z
|
|
490
490
|
.string()
|