MCP Catalogs
Home

mcp-server-chart vs nerve

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

mcp-server-chart
by antvis
nerve
by evilsocket
Stars★ 4,068★ 1,320
30d uses10,239
Score8450
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month9 mo ago

mcp-server-chart · Summary

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

nerve · Summary

Nerve is an Agent Development Kit with native MCP support, allowing agents to be defined in YAML and act as both MCP client and server.

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

nerve · Use cases

  • Building multi-step automation workflows with shared context between agents
  • Creating MCP servers in YAML configuration for standardized tool exposure
  • Benchmarking and evaluating LLM agents with reproducible test cases

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

nerve · Install

Install the Nerve ADK with pip:

pip install nerve-adk

To use as an MCP client, configure your client with:

{
  "mcpServers": {
    "nerve": {
      "command": "python",
      "args": ["-m", "nerve.mcp"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.