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 Valennmg | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 32 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceblockchainDeveloper Tools |
| Language | TypeScript | Rust |
| 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.
solscan-mcp · Summary
An MCP server for querying Solana blockchain data using natural language through the Solscan API.
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
- Quickly retrieving transaction details using natural language queries
- Checking Solana account balances without writing code
- Building applications that provide blockchain data access through conversational interfaces
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
- Clone the repository:
``bash git clone https://github.com/Valennmg/solscan-mcp cd solscan-mcp ``
- Build the project (requires Rust):
``bash cargo build --release ``
- Run the server:
``bash ./target/release/solscan-mcp ``
- For Claude Desktop, add to
config.json:
```json { "mcpServers": { "solscan": { "command": "path/to/solscan-mcp", "args": [] } } }