mcp-server-chart vs mcp-anything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-anything by Type-MCP | |
|---|---|---|
| Stars | ★ 4,068 | ★ 36 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
mcp-anything · Summary
MCP-Anything generates production-ready MCP servers from briefs, codebases, or API specs in seconds.
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-anything · Use cases
- Rapidly convert existing REST APIs into MCP servers for AI agent integration
- Generate MCP servers from OpenAPI, GraphQL, or gRPC specifications
- Create customized MCP servers by describing desired functionality in natural language
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-anything · Install
pip install mcp-anything
export ANTHROPIC_API_KEY=sk-...Build an MCP server from a brief:
# my-api.yaml
server_name: payments-mcp
domain_description: >
A payment API for managing customers, invoices, and subscriptions.
use_cases:
- "Create a customer with email and name"
- "Issue an invoice and send it to the customer"
data_source_path: ./openapi.json
data_source_kind: openapi
auth_method: bearer_token
backend_target: fastmcpmcp-anything build --brief my-api.yaml -o ./my-mcp-server
cd my-mcp-server
pip install -e .
python -m mcp_payments_mcp.serverAdd to Claude Desktop:
{
"mcpServers": {
"payments": { "command": "python", "args": ["-m", "mcp_payments_mcp.server"] }
}
}