mcp-server-chart vs WAIaaS
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | WAIaaS by minhoyoo-iotrust | |
|---|---|---|
| Stars | ★ 4,068 | ★ 26 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsFinanceSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
WAIaaS · Summary
WAIaaS is a self-hosted wallet daemon that enables AI agents to perform blockchain transactions securely through MCP integration.
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
WAIaaS · Use cases
- AI agents performing small on-chain transactions without human approval
- Autonomous trading bots executing DeFi strategies with policy controls
- Multi-agent systems managing shared blockchain wallets with fine-grained permissions
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"]
}
}
}WAIaaS · Install
npm install -g @waiaas/cli
waiaas init # Create data directory + config.toml
waiaas start # Start daemon (sets master password on first run)
waiaas quickset --mode mainnet # Create wallets + MCP sessions in one stepFor Claude Desktop, add to your config:
{
"mcpServers": {
"waiaas": {
"command": "npx",
"args": ["@waiaas/mcp"]
}
}
}