everything vs educhain-ai-agent-kit
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | educhain-ai-agent-kit by SailFish-Finance | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper Toolsblockchain |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
educhain-ai-agent-kit · Summary
MCP server for EDUCHAIN blockchain operations including token queries, wallet management, swaps, and arbitrage detection.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
educhain-ai-agent-kit · Use cases
- Trading assistant for monitoring token prices and executing swaps on SailFish DEX
- Wallet management tool for checking balances and sending tokens
- Arbitrage detection system to identify profit opportunities between exchanges
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingeduchain-ai-agent-kit · Install
- 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"
}
}
}
}