mcp-server-chart vs goldrush-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | goldrush-mcp-server by covalenthq | |
|---|---|---|
| Stars | ★ 4,068 | ★ 14 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceblockchainDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
goldrush-mcp-server · Summary
MCP server exposing Covalent's GoldRush blockchain APIs as tools and resources for LLM clients.
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
goldrush-mcp-server · Use cases
- Enable LLMs to access blockchain data and analytics through natural language
- Provide blockchain information retrieval for AI-powered financial advisors
- Support developers building blockchain-aware applications with MCP integration
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"]
}
}
}goldrush-mcp-server · Install
Installation
npm install -g @covalenthq/goldrush-mcp-serverClaude Desktop Configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"goldrush": {
"command": "npx",
"args": ["-y", "@covalenthq/goldrush-mcp-server@latest"],
"env": {
"GOLDRUSH_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}