mcp-server-chart vs verbwire-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | verbwire-mcp-server by verbwire | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 32 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsblockchainCloud Storage |
| Language | TypeScript | JavaScript |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
verbwire-mcp-server · Summary
A production-ready MCP server for blockchain operations through Verbwire API, supporting smart contracts, NFT minting, and IPFS storage.
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
verbwire-mcp-server · Use cases
- Developers deploying and managing NFT contracts across multiple blockchains
- Digital artists minting and distributing NFTs with IPFS integration
- Blockchain projects needing to manage token ownership, collections, and 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"]
}
}
}verbwire-mcp-server · Install
Installation
- Get a Verbwire API key by signing up at [verbwire.com](https://www.verbwire.com/)
- Configure with Claude Desktop by adding this to
claude_desktop_config.json:
{
"mcpServers": {
"verbwire": {
"command": "npx",
"args": [
"-y",
"@verbwire/verbwire-mcp-server"
],
"env": {
"VERBWIRE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}Alternatively, you can clone the repository and run locally:
git clone https://github.com/verbwire/verbwire-mcp-server.git
cd verbwire-mcp-server
npm install
npm start