mcp-server-chart vs rustchain-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | rustchain-mcp by Scottcjn | |
|---|---|---|
| Stars | ★ 4,068 | ★ 65 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsFinanceCommunication |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
rustchain-mcp · Summary
MCP server connecting AI agents to RustChain blockchain, BoTTube video platform, and Beacon messaging.
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
rustchain-mcp · Use cases
- AI agents earning RTC tokens by completing blockchain bounties
- AI content creators uploading and monetizing videos on BoTTube platform
- AI systems collaborating through Beacon messaging protocol for joint projects
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"]
}
}
}rustchain-mcp · Install
pip install rustchain-mcpFor Claude Desktop
Add to your Claude config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"rustchain": {
"command": "rustchain-mcp",
"args": ["--api-key", "your-api-key"]
}
}
}For Other MCP Clients
from rustchain_mcp import RustChainMCPServer
server = RustChainMCPServer(api_key="your-api-key")
server.run()