MCP Catalogs
Home

mcp-server-chart vs mcp-n8n-builder

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

mcp-server-chart
by antvis
mcp-n8n-builder
by spences10
Stars★ 4,068★ 83
30d uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsProductivityOps & Infra
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-server-chart · Summary

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

mcp-n8n-builder · Summary

MCP server for programmatic creation and management of n8n workflows with API tools.

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-n8n-builder · Use cases

  • Automated workflow creation and management by AI assistants
  • Programmatic integration of n8n with other systems via MCP
  • Batch processing and updating of multiple n8n workflows

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-n8n-builder · Install

Install using npx:

npx -y mcp-n8n-builder

Configuration through environment variables:

  • N8N_HOST: URL of the n8n API (default: http://localhost:5678/api/v1)
  • N8N_API_KEY: API key for n8n authentication
  • OUTPUT_VERBOSITY: Output verbosity level (concise or full, default: concise)

Claude Desktop configuration:

{
  "mcpServers": {
    "n8n-workflow-builder": {
      "command": "npx",
      "args": ["-y", "mcp-n8n-builder"],
      "env": {
        "N8N_HOST": "http://localhost:5678/api/v1",
        "N8N_API_KEY": "your-n8n-api-key",
        "OUTPUT_VERBOSITY": "concise"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.