mcp-server-chart vs home-assistant-vibecode-agent
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | home-assistant-vibecode-agent by Coolver | |
|---|---|---|
| Stars | ★ 4,068 | ★ 550 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
home-assistant-vibecode-agent · Summary
An MCP server that enables AI IDEs to manage Home Assistant through natural language for automation creation, dashboard design, and configuration management.
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
home-assistant-vibecode-agent · Use cases
- Create and debug Home Assistant automations using natural language
- Design and customize UI dashboards with cards and themes
- Automatically install and manage HACS integrations
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"]
}
}
}home-assistant-vibecode-agent · Install
Installation
Option A: Home Assistant Add-on (Recommended)
- Open Home Assistant UI → Settings → Add-ons → Add-on Store → ⋮ → Repositories
- Add repository:
https://github.com/coolver/home-assistant-vibecode-agent - Find HA Vibecode Agent → INSTALL → Start on boot: ON → START
- Click "Open Web UI" and follow setup instructions for your IDE
Option B: Standalone Docker
- Clone repository:
git clone https://github.com/Coolver/home-assistant-vibecode-agent.git - Copy and configure
.env:cp .env.example .env - Start agent:
docker compose -f docker-compose.standalone.yml up -d - Get API key from logs or config file
- Configure MCP client with the API key
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"home-assistant": {
"command": "npx",
"args": ["@coolver/home-assistant-mcp"]
}
}
}