MCP Catalogs
Home

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 uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
home-automationAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month10 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-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"]
    }
  }
}

hass-mcp · Install

Docker Installation (Recommended)

  1. Pull the Docker image:
docker pull voska/hass-mcp:latest
  1. 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"
      }
    }
  }
}
  1. Replace token and URL, then restart Claude Desktop.
Comparison generated from public README + GitHub signals. Last updated automatically.