mcp-server-chart vs mcp-free-usdc-transfer
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-free-usdc-transfer by magnetai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 20 |
| 30d uses | 10,239 | — |
| Score | 84 | 34 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceblockchainDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 16 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-free-usdc-transfer · Summary
MCP server for free USDC transfers on Base blockchain using Coinbase CDP wallets.
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
mcp-free-usdc-transfer · Use cases
- Cryptocurrency payments and transfers without network fees
- Blockchain application testing with real USDC transactions
- Automated payment systems integrated with AI assistants
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"]
}
}
}mcp-free-usdc-transfer · Install
Installation
- Get your Coinbase CDP API key from [Coinbase CDP portal](https://portal.cdp.coinbase.com/)
- Add to your
claude_desktop_config.json:
{
"mcpServers": {
"free-usdc-transfer": {
"command": "npx",
"args": [
"-y",
"@magnetai/free-usdc-transfer"
],
"env": {
"COINBASE_CDP_API_KEY_NAME": "YOUR_COINBASE_CDP_API_KEY_NAME",
"COINBASE_CDP_PRIVATE_KEY": "YOUR_COINBASE_CDP_PRIVATE_KEY"
}
}
}
}