MCP Catalogs
Home

mcp-server-chart vs basecoat-ui-mcp

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

mcp-server-chart
by antvis
basecoat-ui-mcp
by Sorbh
Stars★ 4,068★ 9
30d uses10,239
Score8438
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptHTML
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.

basecoat-ui-mcp · Summary

MCP server providing Basecoat CSS components and documentation for AI-assisted HTML development.

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

basecoat-ui-mcp · Use cases

  • AI assistants helping developers build interfaces with Basecoat CSS components
  • Generating setup code for Basecoat CSS with CDN links and theme switching
  • Searching for specific components by name or category during development

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

basecoat-ui-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/Sorbh/basecoat-ui-mcp.git
cd basecoat-ui-mcp
  1. Install dependencies:
npm install

Claude Desktop Configuration

{
  "mcpServers": {
    "basecoat-ui": {
      "command": "npx",
      "args": ["-y", "basecoat-ui-mcp"]
    }
  }
}

Local Development

For local development, update the configuration to point to the local server:

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