mcp-server-chart vs A2V
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | A2V by Devin-AXIS | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,200 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsFinance |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
A2V · Summary
A2V Protocol is an MCP-compatible AI value computation protocol that enables measurement, exchange, and settlement of AI agent value on blockchain.
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
A2V · Use cases
- Enabling AI agents to receive transparent compensation for their work through blockchain settlements
- Creating an AI agent tool economy with goal-oriented rewards and value exchange mechanisms
- Building agent-to-agent transaction networks where AI services can be bought and sold
- Developing measurement systems for AI interaction quality and value contribution
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"]
}
}
}A2V · Install
Installation
Option 1: HTTP Gateway Integration
# Clone the repository
git clone https://github.com/yourusername/a2vhub.git
cd a2vhub
# Install dependencies (if applicable)
npm install # or yarn install / pnpm install
# Start the local server
python3 -m http.server 8000
# or
npm startOption 2: MCP Integration
// Example: Integrate A2V with your MCP agent
import { A2VClient } from '@a2v/sdk';
const client = new A2VClient({
apiKey: 'your-api-key',
network: 'mainnet', // or 'testnet'
});Claude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"a2v": {
"command": "node",
"args": ["/path/to/a2v/index.js"],
"env": {
"A2V_API_KEY": "your-api-key"
}
}
}
}