crossfin-mcp 1.12.1 → 1.15.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 +8 -8
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://modelcontextprotocol.io)
|
|
6
6
|
[](https://x402.org)
|
|
7
7
|
|
|
8
|
-
**Give your AI agent access to Asian crypto markets.** 16 tools for real-time Korean exchange data, cross-exchange routing, and x402 paid API execution across
|
|
8
|
+
**Give your AI agent access to Asian crypto markets.** 16 tools for real-time Korean exchange data, cross-exchange routing, and x402 paid API execution across 14 exchanges.
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
npx -y crossfin-mcp
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
That's it. Your agent now has 16 tools
|
|
18
|
+
That's it. Your agent now has 16 tools. Most tools work with no wallet setup, and payment-capable tools require `EVM_PRIVATE_KEY`.
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Open beta note: CrossFin API endpoints are currently free, but payment-capable MCP tools still require wallet config for x402 flow compatibility.
|
|
21
21
|
|
|
22
22
|
---
|
|
23
23
|
|
|
@@ -120,7 +120,7 @@ EVM_PRIVATE_KEY=0x... npx -y crossfin-mcp
|
|
|
120
120
|
|
|
121
121
|
| Tool | Price | Description |
|
|
122
122
|
|------|-------|-------------|
|
|
123
|
-
| `find_optimal_route` |
|
|
123
|
+
| `find_optimal_route` | x402 flow | Optimal crypto transfer path across 14 exchanges with 13 bridge coins |
|
|
124
124
|
| `list_exchange_fees` | Free | Trading + withdrawal fee comparison for all exchanges |
|
|
125
125
|
| `compare_exchange_prices` | Free | Live Bithumb KRW vs Binance USD price comparison |
|
|
126
126
|
| `get_kimchi_premium` | Free | Korean vs. global route spread preview (top 3 pairs) |
|
|
@@ -129,7 +129,7 @@ EVM_PRIVATE_KEY=0x... npx -y crossfin-mcp
|
|
|
129
129
|
|
|
130
130
|
| Tool | Price | Description |
|
|
131
131
|
|------|-------|-------------|
|
|
132
|
-
| `call_paid_service` |
|
|
132
|
+
| `call_paid_service` | x402 flow | Call catalog premium endpoints with automatic x402 USDC payment |
|
|
133
133
|
|
|
134
134
|
### Service Registry
|
|
135
135
|
|
|
@@ -181,12 +181,12 @@ EVM_PRIVATE_KEY=0x... npx -y crossfin-mcp
|
|
|
181
181
|
## Supported Exchanges
|
|
182
182
|
|
|
183
183
|
**Korea:** Bithumb, Upbit, Coinone, GoPax
|
|
184
|
-
**Regional Fiat:** bitFlyer, WazirX
|
|
185
|
-
**Global:** Binance, OKX, Bybit
|
|
184
|
+
**Regional Fiat:** bitFlyer, WazirX, bitbank, Indodax, Bitkub
|
|
185
|
+
**Global:** Binance, OKX, Bybit, KuCoin, Coinbase
|
|
186
186
|
|
|
187
187
|
### Bridge Coins
|
|
188
188
|
|
|
189
|
-
BTC, ETH, XRP, SOL, DOGE, ADA, DOT, LINK, AVAX, TRX, KAIA
|
|
189
|
+
BTC, ETH, XRP, SOL, DOGE, ADA, DOT, LINK, AVAX, TRX, KAIA, SUI, APT
|
|
190
190
|
|
|
191
191
|
---
|
|
192
192
|
|
package/dist/index.js
CHANGED
|
@@ -428,7 +428,7 @@ export default function createServer({ config }) {
|
|
|
428
428
|
title: 'Find optimal route',
|
|
429
429
|
description: 'Find the cheapest/fastest path to move money across Asian exchanges. ' +
|
|
430
430
|
'Example: KRW on Bithumb → USDC on Binance. ' +
|
|
431
|
-
'Supports
|
|
431
|
+
'Supports 14 exchanges (Bithumb, Upbit, Coinone, GoPax, bitFlyer, WazirX, bitbank, Indodax, Bitkub, Binance, OKX, Bybit, KuCoin, Coinbase) and 13 bridge coins (incl. KAIA, SUI, APT). ' +
|
|
432
432
|
'Paid tool: calls /api/premium/route/find ($0.10) via x402 (requires EVM_PRIVATE_KEY).',
|
|
433
433
|
inputSchema: z.object({
|
|
434
434
|
from: z
|
|
@@ -492,7 +492,7 @@ export default function createServer({ config }) {
|
|
|
492
492
|
server.registerTool('list_exchange_fees', {
|
|
493
493
|
title: 'List exchange fees',
|
|
494
494
|
description: 'Show trading fees, withdrawal fees, and transfer times for all supported exchanges ' +
|
|
495
|
-
'(Bithumb, Upbit, Coinone, GoPax, bitFlyer, WazirX, Binance, OKX, Bybit)',
|
|
495
|
+
'(Bithumb, Upbit, Coinone, GoPax, bitFlyer, WazirX, bitbank, Indodax, Bitkub, Binance, OKX, Bybit, KuCoin, Coinbase)',
|
|
496
496
|
inputSchema: z.object({}),
|
|
497
497
|
}, async (_params) => {
|
|
498
498
|
try {
|
package/package.json
CHANGED