KawaFi
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| EXECUTE_TX | No | Security mode: 'true' to sign and execute transactions directly, 'false' (default) to generate unsigned transactions for external signing. | false |
| HEDERA_NETWORK | No | The Hedera network to connect to, typically 'mainnet' or 'testnet'. | mainnet |
| SAUCERSWAP_API_KEY | No | Optional but recommended API key for SaucerSwap integration. | |
| MAINNET_HEDERA_OPERATOR_ID | No | Hedera operator account ID for mainnet (e.g., 0.0.123456). | |
| TESTNET_HEDERA_OPERATOR_ID | No | Hedera operator account ID for testnet. | |
| MAINNET_HEDERA_OPERATOR_KEY | No | Hedera operator private key for mainnet. Required only if EXECUTE_TX is true. | |
| TESTNET_HEDERA_OPERATOR_KEY | No | Hedera operator private key for testnet. Required only if EXECUTE_TX is true. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| bonzo_get_reservesB | Get all lending/borrowing reserves from Bonzo Finance |
| bonzo_get_accountC | Get account positions from Bonzo Finance |
| bonzo_get_liquidationsB | Get accounts with outstanding debt eligible for liquidation |
| stader_get_exchange_rateA | Get current HBAR to HBARX exchange rate |
| stader_stake_hbarC | Prepare HBAR staking transaction (returns unsigned transaction) |
| stader_unstake_hbarxC | Prepare HBARX unstaking transaction (returns unsigned transaction) |
| heliswap_get_pair_infoC | Get trading pair information from HeliSwap |
| hashport_get_supported_assetsB | Get list of assets supported by Hashport bridge |
| hashport_get_supported_networksB | Get all networks supported by Hashport |
| hashport_get_bridge_stepsC | Get step-by-step instructions for bridging assets via Hashport |
| hashport_validate_bridgeC | Validate bridge parameters before initiating a bridge |
| hashport_get_assets_amountsB | Get reserve amounts for all assets on Hashport |
| hashport_get_transfersC | Get paginated list of transfers with optional filtering |
| hashport_get_network_assetsC | Get assets available on a specific network |
| hashport_get_network_asset_amountsC | Get amounts for a specific asset on a network |
| hashport_get_network_asset_detailsC | Get detailed information for a specific asset on a network |
| hashport_convert_hedera_tx_idC | Convert Hedera transaction ID format |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 17 tools
Tools are clearly grouped by service (Bonzo, Hashport, HeliSwap, Stader), with distinct purposes within each group. Minor potential confusion exists between hashport_get_assets_amounts and hashport_get_network_asset_amounts, but descriptions clarify the scope differences (all assets vs. specific asset).
Perfectly consistent naming throughout: all tools follow a service_action_resource pattern with snake_case (e.g., bonzo_get_account, hashport_get_assets_amounts). This makes it easy to understand which service each tool belongs to and what it does.
17 tools is reasonable for a multi-service DeFi server covering four distinct platforms. It's slightly on the higher side but well-organized by service, with each tool serving a specific purpose without obvious redundancy.
Coverage varies by service: Hashport has comprehensive tools for bridging (get, validate, convert), but Bonzo lacks update/delete operations for positions, and HeliSwap only has get_pair_info without broader DEX functionality. Gaps exist, but core workflows for each service are partially covered.