MCP Catalogs
Home

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 uses10,239
Score3484
Official
Categories
Developer ToolsAI / LLM Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit18 mo agothis 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 openapi2mcptools

For 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-chart

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.