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 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 6 exchanges (paid via x402, requires `EVM_PRIVATE_KEY`)
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 6 exchanges (Bithumb, Upbit, Coinone, Korbit, GoPax, Binance) and 12 bridge coins. ' +
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, Korbit, GoPax, Binance)',
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 real-time prices for a coin across all Korean exchanges + Binance. ' +
487
- 'Shows price, premium, and arbitrage opportunities.',
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()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "crossfin-mcp",
3
3
  "private": false,
4
- "version": "1.8.2",
4
+ "version": "1.8.3",
5
5
  "description": "CrossFin MCP server for service discovery and paid x402 API execution",
6
6
  "bin": {
7
7
  "crossfin-mcp": "dist/index.js"