educhain-ai-agent-kit
by SailFish-Finance·★ 6·Score 36
MCP server for EDUCHAIN blockchain operations including token queries, wallet management, swaps, and arbitrage detection.
Overview
The EDUCHAIN Agent Kit MCP server provides comprehensive tools for interacting with SailFish DEX on the EDUCHAIN blockchain. It enables Claude to query token and pool information, perform wallet operations like balance checks and token transfers, execute swaps between tokens and EDU (with automatic wrapping/unwrapping), and detect arbitrage opportunities between decentralized and centralized exchanges. The server is written in TypeScript and follows the MCP protocol standards, making it compatible with Claude Desktop and other MCP clients.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when working with EDUCHAIN ecosystem, SailFish DEX, or when you need DeFi tools for token swaps and arbitrage opportunities.
When NOT to choose this
Avoid if you're not working with EDUCHAIN or SailFish DEX specifically, as this server is tightly integrated with this particular ecosystem.
Tools this server exposes
12 tools extracted from the READMEget_token_priceGet the current price of a token on SailFish DEX
get_token_infoGet detailed information about a token on SailFish DEX
get_swap_quoteGet a quote for swapping tokens on SailFish DEX
swap_tokensSwap tokens on SailFish DEX
get_wallet_overviewGet an overview of a wallet including EDU, tokens, and NFTs
get_top_tokensGet a list of top tokens by TVL on SailFish DEX
check_arbitrage_opportunitiesCheck for arbitrage opportunities between CEX and SailFish DEX
get_external_market_dataGet external market data for EDU from centralized exchanges
get_24h_volumeGet the 24-hour trading volume on SailFish DEX
get_pool_infoGet detailed information about a liquidity pool on SailFish DEX
get_edu_balanceGet the EDU balance of a wallet address
send_eduSend EDU native token to another wallet address
Comparable tools
Installation
- Make sure you have Node.js installed
- Clone this repository
- Install dependencies:
npm install - Build the project:
npm run build - Add the MCP server to your Claude Desktop configuration file:
{
"mcpServers": {
"sailfish": {
"command": "node",
"args": ["/path/to/SubgraphMCP/build/index.js"],
"env": {
"RPC_URL": "https://your-edu-rpc-url.com"
}
}
}
}FAQ
- How does the EDU token wrapping work?
- SailFish DEX doesn't support native EDU swaps directly. It uses WEDU (Wrapped EDU) internally. When swapping EDU for tokens or vice versa, the system automatically handles the wrapping/unwrapping process.
- Can I customize external market data APIs for arbitrage detection?
- Yes, you can update the external market configuration using the `update_external_market_config` function to specify custom API URLs, keys, and symbol mappings.
Compare educhain-ai-agent-kit with
Last updated · Auto-generated from public README + GitHub signals.