mcp-server-chart vs UCAI
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | UCAI by nirholas | |
|---|---|---|
| Stars | ★ 4,068 | ★ 33 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| 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.
UCAI · Summary
UCAI is a tool that converts smart contract ABIs to MCP servers, enabling AI agents to interact with blockchain protocols.
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
UCAI · Use cases
- Building AI agents with DeFi capabilities for swapping tokens, providing liquidity, and managing yield farms
- Creating wallet applications that can explain and execute smart contract transactions through natural language
- Developing DAO tooling with AI-powered proposal creation, voting mechanisms, and treasury management
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"]
}
}
}UCAI · Install
Installation
pip install abi-to-mcpQuick Start
Generate an MCP server for a smart contract:
abi-to-mcp generate 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D -o ~/uniswap-server
cd ~/uniswap-server && pip install -r requirements.txtConnect to Claude Desktop by adding to your config:
{
"mcpServers": {
"uniswap": {
"command": "python",
"args": ["/path/to/uniswap-server/server.py"],
"env": {
"RPC_URL": "https://eth.llamarpc.com"
}
}
}
}