MCP Catalogs
Home

mcp-server-chart vs agentify

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

mcp-server-chart
by antvis
agentify
by MonadWorks
Stars★ 4,068★ 25
30d uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
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.

agentify · Summary

Converts OpenAPI specs to MCP servers and other AI agent interfaces with a single command.

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

agentify · Use cases

  • Convert existing REST API documentation to an MCP server for use with AI assistants
  • Generate documentation files for multiple AI development platforms from a single OpenAPI spec
  • Create CLI tools from API specifications for command-line interaction

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

agentify · Install

Install via npm:

npm install -g agentify-cli

Transform an OpenAPI spec to MCP server:

npx agentify-cli transform https://petstore.swagger.io/v2/swagger.json

For Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "my-api": {
      "command": "node",
      "args": ["/path/to/generated/mcp-server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.