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 uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | HTML |
| Last commit | this month | 9 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-chartFor 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
- Clone the repository:
git clone https://github.com/Sorbh/basecoat-ui-mcp.git
cd basecoat-ui-mcp- Install dependencies:
npm installClaude 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"
}
}
}