crossfin-mcp 1.8.5 → 1.8.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 CHANGED
@@ -37,7 +37,7 @@ npx -y crossfin-mcp
37
37
 
38
38
  | Tool | Free/Paid | Description |
39
39
  |------|-----------|-------------|
40
- | `find_optimal_route` | $0.10 | Optimal crypto transfer path across 5 exchanges (11 bridge coins) |
40
+ | `find_optimal_route` | $0.10 | Optimal crypto transfer path across 7 exchanges (11 bridge coins) |
41
41
  | `list_exchange_fees` | Free | Trading + withdrawal fee comparison |
42
42
  | `compare_exchange_prices` | Free | Live price comparison across Korean exchanges |
43
43
  | `get_kimchi_premium` | Free | Korean vs. global price spread preview |
@@ -56,7 +56,7 @@ npx -y crossfin-mcp
56
56
 
57
57
  ## Supported exchanges
58
58
 
59
- Bithumb, Upbit, Coinone, GoPax (Korea) + Binance (Global)
59
+ Bithumb, Upbit, Coinone, GoPax (Korea) + Binance, OKX, Bybit (Global)
60
60
 
61
61
  ## Bridge coins
62
62
 
package/dist/index.js CHANGED
@@ -417,7 +417,7 @@ export default function createServer({ config }) {
417
417
  title: 'Find optimal route',
418
418
  description: 'Find the cheapest/fastest path to move money across Asian exchanges. ' +
419
419
  'Example: KRW on Bithumb → USDC on Binance. ' +
420
- 'Supports 5 exchanges (Bithumb, Upbit, Coinone, GoPax, Binance) and 11 bridge coins (incl. KAIA). ' +
420
+ 'Supports 7 exchanges (Bithumb, Upbit, Coinone, GoPax, Binance, OKX, Bybit) and 11 bridge coins (incl. KAIA). ' +
421
421
  'Paid tool: calls /api/premium/route/find ($0.10) via x402 (requires EVM_PRIVATE_KEY).',
422
422
  inputSchema: z.object({
423
423
  from: z
@@ -481,7 +481,7 @@ export default function createServer({ config }) {
481
481
  server.registerTool('list_exchange_fees', {
482
482
  title: 'List exchange fees',
483
483
  description: 'Show trading fees, withdrawal fees, and transfer times for all supported exchanges ' +
484
- '(Bithumb, Upbit, Coinone, GoPax, Binance)',
484
+ '(Bithumb, Upbit, Coinone, GoPax, Binance, OKX, Bybit)',
485
485
  inputSchema: z.object({}),
486
486
  }, async (_params) => {
487
487
  try {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "crossfin-mcp",
3
3
  "private": false,
4
- "version": "1.8.5",
4
+ "version": "1.8.6",
5
5
  "mcpName": "io.github.bubilife1202/crossfin",
6
6
  "description": "CrossFin MCP server for service discovery and paid x402 API execution",
7
7
  "bin": {