openapi2mcptools vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
openapi2mcptools by 2013xile | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 19 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 34 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 18 mo ago | this month |
openapi2mcptools · Summary
Converts OpenAPI specifications to MCP tools for faster MCP server development.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
openapi2mcptools · Use cases
- Rapidly create MCP servers from existing REST API documentation
- Enable AI models to interact with web APIs through the MCP protocol
- Convert complex API specifications into tool formats accessible to AI assistants
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
openapi2mcptools · Install
npm install openapi2mcptoolsFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"openapi2mcptools": {
"command": "node",
"args": ["path/to/your/script.js"]
}
}
}Where your script.js uses the example code from the README to create an MCP server from your 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"]
}
}
}