mcp-server-chart vs a2a-demos
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | a2a-demos by capiscio | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityAI / LLM ToolsDeveloper 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.
a2a-demos · Summary
Demo agents showcasing CapiscIO Agent Guard and MCP Guard with trust badges, identity verification, and tool-level authorization.
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
a2a-demos · Use cases
- Securing MCP servers with trust badges and identity verification
- Implementing runtime policy changes for AI agent authorization
- Demonstrating trust infrastructure across different AI frameworks (LangChain, CrewAI, LangGraph)
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"]
}
}
}a2a-demos · Install
Installation
Each demo has its own setup process:
- **Enforcement Demo**:
cd enforcement-demo && ./setup.sh - **Policy Demo**:
cd policy-demo && ./setup.sh - **Agent Guard Demos**:
cd multi-agent-demo && ./setup.sh
Make sure you have Python 3.11+ and a CapiscIO account with API key. For integration demos, you'll also need an OpenAI API key.
Claude Desktop Configuration
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"capiscio-guard": {
"command": "python",
"args": ["path/to/a2a-demos/enforcement-demo/server/main.py"]
}
}
}