mcp-server-chart vs infura-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | infura-mcp by deflang | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsblockchainAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
infura-mcp · Summary
An MCP server for querying Ethereum blockchain data through Infura APIs using natural language.
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
infura-mcp · Use cases
- Blockchain developers needing quick access to Ethereum data without writing custom API calls
- DeFi applications requiring real-time blockchain information
- Smart contract developers testing and debugging on-chain transactions
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"]
}
}
}infura-mcp · Install
Installation
- Install the package from PyPI:
pip install infura-mcp- Configure with Claude Desktop by adding this to your config.json:
{
"mcpServers": {
"infura": {
"command": "npx",
"args": [
"-y",
"infura-mcp"
],
"env": {
"INFURA_API_KEY": "your-api-key-here",
"WRITE_TOOLS_ENABLED": false
}
}
}
}- Or run with Docker:
docker run -d --name infura-mcp-server -p 3000:3000 -e INFURA_API_KEY="your-infura-api-key" sumiteshn/infura-mcp:latest