mcp-server-chart vs mcp-openapi
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-openapi by ReAPI-com | |
|---|---|---|
| Stars | ★ 4,068 | ★ 86 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-openapi · Summary
MCP server that loads and serves OpenAPI specifications to enable LLM-powered API integrations in IDEs.
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-openapi · Use cases
- Generate API-aware code snippets and clients in IDEs
- Provide context-aware code completion for API endpoints
- Automate API documentation generation from OpenAPI specs
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-openapi · Install
Install the MCP server using npm:
npm install -g @reapi/mcp-openapiConfigure in Cursor IDE by creating .cursor/mcp.json:
{
"mcpServers": {
"@reapi/mcp-openapi": {
"command": "npx",
"args": ["-y", "@reapi/mcp-openapi@latest", "--dir", "./specs"],
"env": {}
}
}
}Place your OpenAPI specifications in the ./specs directory and enable the server in Cursor Settings > MCP.