io.chainflip-broker/baas
Official6 toolsChainflip Broker as a Service
Cross-chain cryptocurrency swaps via Chainflip. Get quotes, execute swaps, and track progress.
Execute cross-chain cryptocurrency swaps with quote retrieval and progress tracking.
Captured live from the server via tools/list.
get_quotes
Get swap quotes for exchanging one crypto asset to another. Returns available quotes with exchange rates, fees, and estimated output amounts. API key is optional.
Parameters (4)
- sourceAssetstringrequired
Source asset identifier (e.g., 'btc.btc', 'eth.eth', 'usdc.eth')
- destinationAssetstringrequired
Destination asset identifier (e.g., 'eth.eth', 'btc.btc', 'sol.sol')
- amountnumberrequired
Amount to swap in human-readable format (e.g., 1.5 for 1.5 BTC)
- apiKeystring | null
Optional partner API key.
start_dca_swap
Start a DCA (Dollar Cost Averaging) cross-chain swap that splits into multiple sub-swaps over time. Returns the deposit address. API key is optional.
Parameters (8)
- sourceAssetstringrequired
Source asset identifier (e.g., 'btc.btc', 'eth.eth', 'usdc.eth')
- destinationAssetstringrequired
Destination asset identifier (e.g., 'eth.eth', 'btc.btc', 'sol.sol')
- destinationAddressstringrequired
Destination address on the target chain
- refundAddressstringrequired
Refund address on the source chain, used if minimum price cannot be met
- numberOfChunksintegerrequired
Number of sub-swaps for DCA (Dollar Cost Averaging). Must be >= 1.
- chunkIntervalBlocksinteger | null
Optional delay between DCA sub-swaps in state-chain blocks (1 block = 6 seconds). Defaults to 2 blocks (12 seconds).
- minimumPricenumber | null
Optional minimum accepted price as a destination-per-source ratio (e.g., for a btc.btc to eth.eth swap, 28.5 means 1 BTC gets at least 28.5 ETH). When omitted, automatically calculated from current pool prices with 2% slippage tolerance. Set to 0 to accept any price.
- apiKeystring | null
Optional partner API key.
check_status
Check the status of a swap by its ID. Returns the current swap state including deposit detection, swap progress, and egress information.
Parameters (1)
- swapIdintegerrequired
The swap ID returned by start_swap or start_dca_swap
list_assets
List all available swap assets and their details including ticker, network, direction, decimals, minimum amounts, and current USD prices.
No parameters.
start_swap
Start a cross-chain swap. Returns the deposit address where you should send your source asset. API key is optional.
Parameters (6)
- sourceAssetstringrequired
Source asset identifier (e.g., 'btc.btc', 'eth.eth', 'usdc.eth')
- destinationAssetstringrequired
Destination asset identifier (e.g., 'eth.eth', 'btc.btc', 'sol.sol')
- destinationAddressstringrequired
Destination address on the target chain
- refundAddressstringrequired
Refund address on the source chain, used if minimum price cannot be met
- minimumPricenumber | null
Optional minimum accepted price as a destination-per-source ratio (e.g., for a btc.btc to eth.eth swap, 28.5 means 1 BTC gets at least 28.5 ETH). When omitted, automatically calculated from current pool prices with 2% slippage tolerance. Set to 0 to accept any price.
- apiKeystring | null
Optional partner API key.
get_native_quotes
Get swap quotes for exchanging one crypto asset to another using native (smallest unit) amounts. Returns available quotes with exchange rates, fees, and estimated output amounts. Use this when you have amounts in native units (e.g., satoshis for BTC, wei for ETH). API key is optional.
Parameters (4)
- sourceAssetstringrequired
Source asset identifier (e.g., 'btc.btc', 'eth.eth', 'usdc.eth')
- destinationAssetstringrequired
Destination asset identifier (e.g., 'eth.eth', 'btc.btc', 'sol.sol')
- amountstringrequired
Amount to swap in native units (e.g., '100000000' for 1 BTC in satoshis)
- apiKeystring | null
Optional partner API key.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"baas": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://chainflip-broker.io/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.