mcp-server-chart vs evm-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | evm-mcp-server by mcpdotdirect | |
|---|---|---|
| Stars | ★ 4,068 | ★ 376 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
evm-mcp-server · Summary
Comprehensive MCP server providing blockchain interaction tools across 60+ EVM networks with 22 tools and AI-guided prompts.
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
evm-mcp-server · Use cases
- AI agents analyzing wallet activity and token holdings across multiple blockchains
- Smart contract interaction without needing to manually provide ABI information
- Automated blockchain transactions through AI planning and execution
- Human-readable address resolution using ENS names instead of complex wallet addresses
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"]
}
}
}evm-mcp-server · Install
Installation
# Clone the repository
git clone https://github.com/mcpdotdirect/mcp-evm-server.git
cd mcp-evm-server
# Install dependencies with Bun
bun install
# Or with npm
npm installClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"evm-mcp-server": {
"command": "npx",
"args": ["-y", "@mcpdotdirect/evm-mcp-server"]
},
"evm-mcp-http": {
"command": "npx",
"args": ["-y", "@mcpdotdirect/evm-mcp-server", "--http"]
}
}
}