mcp-server-chart vs educhain-ai-agent-kit
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | educhain-ai-agent-kit by SailFish-Finance | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper Toolsblockchain |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
educhain-ai-agent-kit · Summary
MCP server for EDUCHAIN blockchain operations including token queries, wallet management, swaps, and arbitrage detection.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}educhain-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"
}
}
}
}