mcp-server-chart vs reshapr
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | reshapr by reshaprio | |
|---|---|---|
| Stars | ★ 4,068 | ★ 92 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Java |
| 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.
reshapr · Summary
reShapr is a no-code MCP server that transforms REST/GraphQL/gRPC APIs into AI-native tools with context control.
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
reshapr · Use cases
- Transforming existing REST APIs into MCP tools for AI agents
- Controlling context size by filtering API responses before sending to LLMs
- Creating MCP interfaces for GraphQL and gRPC services
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"]
}
}
}reshapr · Install
Install the CLI:
npm install -g @reshapr/reshapr-cliRun the platform locally:
reshapr runConnect to control plane and import API:
reshapr login -s http://localhost:5555 -u admin -p password
reshapr import -u https://raw.githubusercontent.com/open-meteo/open-meteo/refs/heads/main/openapi.yml --backendEndpoint https://api.open-meteo.comConfigure Claude Desktop:
{
"mcpServers": {
"reshapr": {
"command": "npx",
"args": ["@reshapr/reshapr-cli", "serve"]
}
}
}