drio
Open app

EDUCHAIN Agent Kit

Source

This MCP (Model Context Protocol) server is integrated into Claude's MCP and maintained by SailFish

Catalog onlyCatalog onlySTDIO

Overview

EDUCHAIN Agent Kit is a Model Context Protocol (MCP) server integrated into Claude's MCP, providing tools and resources for interacting with EDUCHAIN, allowing users to query information about tokens and pools and perform swaps through SailFish DEX.

To use the EDUCHAIN Agent Kit, clone the repository, install dependencies, build the project, and configure the MCP server in your Claude Desktop configuration file.

  • Token and pool information retrieval - Wallet operations including balance checks and token transfers - Swap operations for token exchanges - Arbitrage operations to identify market opportunities
  1. Checking token prices and historical data.
  2. Performing token swaps on SailFish DEX.
  3. Monitoring arbitrage opportunities between centralized exchanges and SailFish DEX.

Add to your AI client

Use these steps to connect EDUCHAIN Agent Kit in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "educhain-ai-agent-kit-sailfish-finance": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-educhain-ai-agent-kit-sailfish-finance"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "educhain-ai-agent-kit-sailfish-finance": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-educhain-ai-agent-kit-sailfish-finance"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "educhain-ai-agent-kit-sailfish-finance": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-educhain-ai-agent-kit-sailfish-finance"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "educhain-ai-agent-kit-sailfish-finance": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-educhain-ai-agent-kit-sailfish-finance"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "educhain-ai-agent-kit-sailfish-finance": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-educhain-ai-agent-kit-sailfish-finance"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "educhain-ai-agent-kit-sailfish-finance": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-educhain-ai-agent-kit-sailfish-finance"
      ]
    }
  }
}

FAQ

What is the purpose of the EDUCHAIN Agent Kit?

It provides a framework for interacting with the EDUCHAIN ecosystem, enabling users to manage tokens and perform swaps.

Is there a cost to use the EDUCHAIN Agent Kit?

The EDUCHAIN Agent Kit is free to use for anyone.

What programming language is used in the project?

The project is developed in TypeScript.