mcp-server-chart vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | solscan-mcp by wowinter13 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 40 |
| 30d uses | 10,239 | — |
| Score | 84 | 39 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper Toolsblockchain |
| Language | TypeScript | Rust |
| 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.
solscan-mcp · Summary
A Rust MCP server for querying Solana blockchain data through Solscan API 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
solscan-mcp · Use cases
- Analyzing suspected addresses for criminal activity by combining with other MCPs
- Investigating wallet patterns including MEV, dusting, poisoning, and sandwich attacks
- Querying token information and transaction details on the Solana blockchain
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"]
}
}
}solscan-mcp · Install
Installation
Prerequisites:
- Rust toolchain (install via [rustup](https://rustup.rs/))
- Solscan Pro API key (obtain from [Solscan APIs](https://solscan.io/apis))
cargo install solscan-mcpAdd to your Claude Desktop configuration:
{
"mcpServers": {
"solscan-mcp": {
"command": "/Users/$username/.cargo/bin/solscan-mcp",
"args": [],
"env": {
"SOLSCAN_API_KEY": "your_solscan_api_key"
}
}
}
}