MCP Catalogs
Home

mcp-server-chart vs mcp-server-any-openapi

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp-server-any-openapi
by baryhuang
Stars★ 4,068★ 82
30d uses10,239
Score8440
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsWeb Scraping
LanguageTypeScriptPython
Last committhis month13 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-server-any-openapi · Summary

An MCP server enabling Claude to discover and call any API endpoint through semantic search of OpenAPI specifications.

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-server-any-openapi · Use cases

  • Integrating private APIs with Claude Desktop without updating client configuration
  • Working with large OpenAPI specifications that would overwhelm standard MCP clients
  • Enabling natural language API discovery across multiple API services

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"]
    }
  }
}

mcp-server-any-openapi · Install

Installing via Smithery

npx -y @smithery/cli install @baryhuang/mcp-server-any-openapi --client claude

Using pip

pip install mcp-server-any-openapi

Claude Desktop Configuration

{
  "mcpServers": {
    "any_openapi": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "OPENAPI_JSON_DOCS_URL=https://api.example.com/openapi.json",
        "-e",
        "MCP_API_PREFIX=finance",
        "-e",
        "GLOBAL_TOOL_PROMPT='Access to insights apis for ACME Financial Services abc.com .",
        "buryhuang/mcp-server-any-openapi:latest"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.