MCP Catalogs
Home

mcp-server-chart vs api2mcp4j

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

mcp-server-chart
by antvis
api2mcp4j
by TheEterna
Stars★ 4,068★ 102
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptJava
Last committhis month2 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

api2mcp4j · Summary

Spring Boot starter that automatically converts REST APIs to MCP servers with zero to low code.

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

api2mcp4j · Use cases

  • Quickly expose internal management system APIs to AI agents
  • Build multi-agent systems by converting microservices into MCP tools
  • Prototype AI features on top of production REST services without duplicating logic

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

api2mcp4j · Install

Installation

  1. Clone and build the project:
git clone https://github.com/TheEterna/api2mcp4j.git
cd api2mcp4j/server2mcp-starter-webmvc
mvn clean install
  1. Add dependency to your pom.xml:
<dependency>
    <groupId>com.ai.plug</groupId>
    <artifactId>server2mcp-starter-webmvc</artifactId>
    <version>1.1.4-SNAPSHOT</version>
</dependency>
  1. Enable in application.yml:
plugin:
  mcp:
    enabled: true
    parser:
      params: SWAGGER3, SWAGGER2, SpringMVC, JACKSON, TOOL
      des:    SWAGGER3, SWAGGER2, JAVADOC, TOOL, JACKSON
    scope: interface
  1. Start your application and test with any MCP client
Comparison generated from public README + GitHub signals. Last updated automatically.