crossfin-mcp 1.8.6 → 1.8.8
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 +4 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ npx -y crossfin-mcp
|
|
|
29
29
|
## What your agent can do
|
|
30
30
|
|
|
31
31
|
- **"빗썸에서 바이낸스로 500만원 USDC 만들려면?"** → `find_optimal_route` evaluates 11 bridge coins, returns cheapest path
|
|
32
|
-
- **"
|
|
32
|
+
- **"한국-글로벌 스프레드 얼마야?"** → `get_kimchi_premium` returns real-time spread across 11 pairs
|
|
33
33
|
- **"거래소별 XRP 가격 비교해줘"** → `compare_exchange_prices` checks 4 Korean exchanges
|
|
34
34
|
- **"한국 시장 브리핑해줘"** → `call_paid_service` calls Morning Brief bundle
|
|
35
35
|
|
|
@@ -37,12 +37,12 @@ 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
|
|
40
|
+
| `find_optimal_route` | $0.10 | Optimal crypto transfer path across 9 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 |
|
|
44
44
|
| `call_paid_service` | Varies | Call any of 35 paid APIs with automatic x402 payment |
|
|
45
|
-
| `search_services` | Free | Search
|
|
45
|
+
| `search_services` | Free | Search registered services |
|
|
46
46
|
| `list_services` | Free | Browse service catalog |
|
|
47
47
|
| `get_service` | Free | Service details |
|
|
48
48
|
| `list_categories` | Free | Service categories |
|
|
@@ -56,7 +56,7 @@ npx -y crossfin-mcp
|
|
|
56
56
|
|
|
57
57
|
## Supported exchanges
|
|
58
58
|
|
|
59
|
-
Bithumb, Upbit, Coinone, GoPax (Korea) + Binance, OKX, Bybit (Global)
|
|
59
|
+
Bithumb, Upbit, Coinone, GoPax (Korea) + bitFlyer, WazirX (Regional Fiat) + Binance, OKX, Bybit (Global)
|
|
60
60
|
|
|
61
61
|
## Bridge coins
|
|
62
62
|
|
package/dist/index.js
CHANGED
|
@@ -272,8 +272,8 @@ export default function createServer({ config }) {
|
|
|
272
272
|
}
|
|
273
273
|
});
|
|
274
274
|
server.registerTool('get_kimchi_premium', {
|
|
275
|
-
title: 'Get
|
|
276
|
-
description: 'Get free preview of the
|
|
275
|
+
title: 'Get route spread',
|
|
276
|
+
description: 'Get free preview of the Route Spread index — real-time price spread between Korean and global crypto exchanges (top 3 pairs)',
|
|
277
277
|
inputSchema: z.object({}),
|
|
278
278
|
}, async (_params) => {
|
|
279
279
|
try {
|
|
@@ -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
|
|
420
|
+
'Supports 9 exchanges (Bithumb, Upbit, Coinone, GoPax, bitFlyer, WazirX, 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, OKX, Bybit)',
|
|
484
|
+
'(Bithumb, Upbit, Coinone, GoPax, bitFlyer, WazirX, Binance, OKX, Bybit)',
|
|
485
485
|
inputSchema: z.object({}),
|
|
486
486
|
}, async (_params) => {
|
|
487
487
|
try {
|
package/package.json
CHANGED