EDUCHAIN Agent Kit
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RPC_URL | Yes | The RPC URL for blockchain interactions with EDUCHAIN |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_token_priceC | Get the current price of a token on SailFish DEX |
| get_token_infoC | Get detailed information about a token on SailFish DEX |
| get_pool_infoC | Get detailed information about a liquidity pool on SailFish DEX |
| get_top_tokensC | Get a list of top tokens by TVL on SailFish DEX |
| get_top_poolsC | Get a list of top liquidity pools by TVL on SailFish DEX |
| get_total_tvlB | Get the total value locked (TVL) in SailFish DEX |
| get_24h_volumeB | Get the 24-hour trading volume on SailFish DEX |
| get_token_historical_dataC | Get historical data for a token on SailFish DEX |
| get_pool_historical_dataC | Get historical data for a liquidity pool on SailFish DEX |
| get_edu_balanceC | Get the EDU balance of a wallet address |
| get_token_balanceA | Get the token balance of a wallet address with USD value using SailFish as price oracle |
| get_multiple_token_balancesC | Get multiple token balances for a wallet address with USD values using SailFish as price oracle |
| get_nft_balanceC | Get the NFT balance of a wallet address for a specific NFT collection |
| get_wallet_overviewC | Get an overview of a wallet including EDU, tokens, and NFTs |
| set_rpc_urlC | Set the RPC URL for blockchain interactions |
| get_rpc_urlB | Get the current RPC URL used for blockchain interactions |
| send_eduC | Send EDU native token to another wallet address |
| get_wallet_address_from_private_keyB | Get wallet address from private key with proper checksum formatting |
| send_erc20_tokenC | Send ERC20 token to another wallet address |
| get_swap_quoteC | Get a quote for swapping tokens on SailFish DEX |
| swap_tokensC | Swap tokens on SailFish DEX (token to token) |
| swap_edu_for_tokensC | Swap EDU for tokens on SailFish DEX |
| swap_tokens_for_eduC | Swap tokens for EDU on SailFish DEX |
| get_external_market_dataC | Get external market data for EDU from centralized exchanges |
| check_arbitrage_opportunitiesC | Check for arbitrage opportunities between centralized exchanges and SailFish DEX |
| update_external_market_configC | Update the configuration for external market data API |
| get_external_market_configB | Get the current configuration for external market data API |
| wrap_eduC | Wrap EDU to WEDU (Wrapped EDU) |
| unwrap_weduC | Unwrap WEDU (Wrapped EDU) to EDU |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| SailFish DEX Overview | Overview of SailFish DEX including TVL, volume, and other metrics |
TDQS
Scored across 29 tools
Most tools have distinct purposes targeting specific resources like balances, pools, tokens, swaps, or configurations, with clear boundaries. However, some overlap exists between get_token_balance and get_multiple_token_balances, and between swap_edu_for_tokens, swap_tokens, and swap_tokens_for_edu, which could cause minor confusion in selection.
Tool names follow a highly consistent verb_noun pattern throughout, using snake_case uniformly. All tools start with verbs like 'get', 'send', 'swap', 'wrap', 'unwrap', 'check', 'set', or 'update', followed by descriptive nouns, making the naming predictable and readable.
With 29 tools, the count is borderline high for a DEX and wallet interaction server, potentially feeling heavy and overwhelming. While many tools are specialized, the number might exceed typical scoping (3-15 tools), suggesting some consolidation could improve usability without losing functionality.
The tool set provides comprehensive coverage for the SailFish DEX and wallet management domain, including data retrieval (balances, prices, pools, tokens), trading operations (swaps, arbitrage), configuration management (RPC, market data), and token handling (wrap/unwrap, sends). No obvious gaps are present, supporting full agent workflows.