mcp-server-chart vs hass-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | hass-mcp by voska | |
|---|---|---|
| Stars | ★ 4,068 | ★ 296 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | home-automationAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
hass-mcp · Summary
Hass-MCP enables AI assistants to interact with Home Assistant through device control, entity queries, and automation 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
hass-mcp · Use cases
- Control smart home devices through natural language commands
- Troubleshoot automations and identify issues with entities
- Generate Home Assistant automations based on conversation context
- Summarize and analyze smart home usage patterns
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"]
}
}
}hass-mcp · Install
Docker Installation (Recommended)
- Pull the Docker image:
docker pull voska/hass-mcp:latest- Add to Claude Desktop config:
{
"mcpServers": {
"hass-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HA_URL",
"-e",
"HA_TOKEN",
"voska/hass-mcp"
],
"env": {
"HA_URL": "http://homeassistant.local:8123",
"HA_TOKEN": "YOUR_LONG_LIVED_TOKEN"
}
}
}
}- Replace token and URL, then restart Claude Desktop.